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