Axinom Mosaic Libraries
    Preparing search index...

    Variable ButtonConst

    Button: ForwardRefExoticComponent<
        (
            (NavigationButtonProps | ContextButtonProps) & { width?: string | number | undefined; height?: string | number | undefined; icon?: IconName | undefined; }
        ) & RefAttributes<HTMLButtonElement | HTMLAnchorElement>,
    > = ...

    Button which can render an icon.

    // to render a button element
    <Button type="button" icon={IconName.X} />
    // to render an anchor element
    <Button path="/home" icon={IconName.X} />