import type { IconColor } from "@/components/Icon"; import { Gradient } from "@/components/Icon"; type GradientProps = { id: string; color?: IconColor; }; export function WarningIcon(props: GradientProps) { return ( <> ); }