Type Alias IconButtonProps

IconButtonProps: PropsWithChildren<
    {
        adjustMarginToAlignToEdge?: "end"
        | "start"
        | false;
        className?: string;
        id?: string;
        isDisabled?: boolean;
        isTooltipSuppressed?: boolean;
        label: string;
        onClick?: MouseEventHandler<HTMLButtonElement>;
        size: "small" | "medium" | "large";
        tooltip?: string;
    },
>