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