import type { SVGProps } from "react"; export interface ChartPieIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function ChartPieIcon({ className = "", size = 24, color = "currentColor", ...props }: ChartPieIconProps) { return ( ); }