type Props = { variant: "primary" | "default"; }; export function SuccessCheckIcon({ variant }: Props) { const color = variant === "primary" ? "#1FC16B" : "#444444"; return ( ); }