Blazor 简单组件(1):B_Icon开发

文章目录

  • 前言
  • ICON开发
  • 使用

前言

Blazor 简单组件(0):简单介绍

ICON开发


<i class="@Type" style="font-size:@(Size)px;color:@Color;"></i>

@code {
    /// 
    /// icon类型
    /// 
    [Parameter]
    public string Type { get; set; } = "";

    /// 
    /// icon大小
    /// 
    [Parameter]
    public string Size { get; set; } = "25";

    /// 
    /// icon颜色
    /// 
    [Parameter]
    public string Color { get; set; } = "black";

    private string StyleStr { get; set; } = "";

}

使用

<B_Icon Type="fas fa-arrows-to-dot" />
<B_Icon Type="fas fa-globe" Size="50" />
<B_Icon Type="fas fa-poo" Color="yellow" />

在这里插入图片描述
Font Awesome 图标合集

你可能感兴趣的:(Blazor组件开发,数据库,开发语言,Blazor)