import classNames from "@lib/classNames"; export type SwatchProps = { size?: "base" | "sm" | "lg"; backgroundColor: string; onClick: () => void; }; const Swatch = (props: SwatchProps) => { const { size, backgroundColor, onClick } = props; return (
); }; export default Swatch;