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