import React, { forwardRef } from "react"; import clsx from "clsx"; import "./FilledButton.scss"; export type ButtonVariant = "filled" | "outlined" | "icon"; export type ButtonColor = "primary" | "danger" | "warning" | "muted"; export type ButtonSize = "medium" | "large"; export type FilledButtonProps = { label: string; children?: React.ReactNode; onClick?: () => void; variant?: ButtonVariant; color?: ButtonColor; size?: ButtonSize; className?: string; fullWidth?: boolean; startIcon?: React.ReactNode; }; export const FilledButton = forwardRef( ( { children, startIcon, onClick, label, variant = "filled", color = "primary", size = "medium", fullWidth, className, }, ref, ) => { return ( ); }, );