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