ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface SvgTextProps {
        svg: ReactNode;
        children: ReactNode;
        className?: string;
        fontSize?: string | number;
        fontWeight?: string | number;
        as?: ElementType;
    }
    Index

    Properties

    svg: ReactNode

    The SVG content to display inside the text

    children: ReactNode

    The content to display (will have the SVG "inside" it)

    className?: string

    Additional className for the container

    fontSize?: string | number

    Font size for the text mask (in viewport width units or CSS units)

    "20vw"
    
    fontWeight?: string | number

    Font weight for the text mask

    "bold"
    
    as?: ElementType

    The element type to render for the container

    "div"