import { IconType, IconBaseProps } from "react-icons"; import { ColorOption } from "../hooks/useTextColorClasses"; export type ButtonBaseProps = { variant?: "primary" | "secondary" | "tertiary" | "outlined"; large?: boolean; fullwidth?: boolean; disabled?: boolean; }; export type WithIconBaseProps = { icon: IconType; iconColor?: ColorOption; iconProps?: IconBaseProps; iconPosition?: "left" | "right"; };