{"version":3,"file":"career.mjs","names":[],"sources":["../../src/react/career.tsx"],"sourcesContent":["import { useId, type SVGProps } from 'react';\n\nexport type CareerIconProps = SVGProps<SVGSVGElement> & {\n  /** Accessibility title for the icon, set aria-hidden=\"true\" if the icon is purely decorative. */\n  title?: string;\n  /**\n   * The size of the icon.\n   * It sets the font-size, possible as the width and height is `1em`. If not set, the icon will inherit the font size of its parent.\n   */\n  size?: '2xl' | 'xl' | 'large' | 'medium' | 'small';\n  /**\n   * The color of the icon.\n   * @default 'inherit'\n   */\n  color?: 'inherit' | 'primary' | 'gray' | 'black' | 'white';\n};\n\nexport const CareerIcon = ({ title, size, color, ...props }: CareerIconProps) => {\n  const titleId = useId();\n  return (\n    <svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"currentColor\" viewBox=\"0 0 24 24\" focusable='false' role='img' width='1em' height='1em'  aria-labelledby={title ? titleId : undefined} data-size={size} data-color={color} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path d=\"M13 13.75a1 1 0 1 1-2 0 1 1 0 0 1 2 0\" /><path d=\"M19.5 13.986a3.23 3.23 0 0 1-1.75.514H14V13h3.75a1.75 1.75 0 0 0 1.75-1.75V9h-15v2.25c0 .966.784 1.75 1.75 1.75H10v1.5H6.25a3.23 3.23 0 0 1-1.75-.514v2.264c0 .966.784 1.75 1.75 1.75h11.5a1.75 1.75 0 0 0 1.75-1.75zM13.75 7.5a1.75 1.75 0 0 0-3.5 0zm7.25 0v8.75a3.25 3.25 0 0 1-3.25 3.25H6.25A3.25 3.25 0 0 1 3 16.25V7.5h5.75a3.25 3.25 0 0 1 6.5 0z\" /></svg>\n  );\n};"],"mappings":";;;AAiBA,MAAa,cAAc,EAAE,OAAO,MAAM,OAAO,GAAG,YAA6B;CAC/E,MAAM,UAAU,OAAO;CACvB,OACE,qBAAC,OAAD;EAAK,OAAM;EAA6B,MAAK;EAAe,SAAQ;EAAY,WAAU;EAAQ,MAAK;EAAM,OAAM;EAAM,QAAO;EAAO,mBAAiB,QAAQ,UAAU,KAAA;EAAW,aAAW;EAAM,cAAY;EAAO,GAAI;YAA7N;GAAqO,QAAQ,oBAAC,SAAD;IAAO,IAAI;cAAU;IAAc,CAAA,GAAG;GAAK,oBAAC,QAAD,EAAM,GAAE,yCAA0C,CAAA;uBAAC,QAAD,EAAM,GAAE,6VAA8V,CAAA;GAAM"}