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