Design System Utilities @ 0.1.1-alpha.0
    Preparing search index...

    Interface Data<T_Slug>

    0.1.0-alpha

    interface Data<T_Slug extends string = string> {
        height: number;
        innerSVG: string;
        label: string;
        slug: T_Slug;
        width: number;
        ariaLabel?: string;
    }

    Type Parameters

    • T_Slug extends string = string

    Implemented by

    Index

    Properties

    height: number

    Height of the SVG viewport.

    innerSVG: string

    The paths and shapes to be included inside a element.

    label: string

    The human-readable name of this icon as displayed for users (including via screen-readers).

    slug: T_Slug

    The slugified name of this icon as displayed in code (e.g., props, css).

    width: number

    Width of the SVG viewport.

    ariaLabel?: string

    An override for the accessible name for this logo.