{"version":3,"file":"price.mjs","names":[],"sources":["../../src/react/price.tsx"],"sourcesContent":["import { useId, type SVGProps } from 'react';\n\nexport type PriceIconProps = 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 PriceIcon = ({ title, size, color, ...props }: PriceIconProps) => {\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=\"M7.679 9.256a1.578 1.578 0 1 0 0-3.155 1.578 1.578 0 0 0 0 3.155\" /><path fillRule=\"evenodd\" d=\"M3.015 3.014h9.298l7.729 7.73a3.248 3.248 0 0 1 0 4.59l-4.708 4.708a3.248 3.248 0 0 1-4.59 0l-7.73-7.729V3.014Zm1.5 1.5v7.178l7.289 7.29c.68.68 1.788.68 2.47 0l4.707-4.709a1.748 1.748 0 0 0 0-2.47l-7.289-7.289z\" clipRule=\"evenodd\" /></svg>\n  );\n};"],"mappings":";;;AAiBA,MAAa,aAAa,EAAE,OAAO,MAAM,OAAO,GAAG,YAA4B;CAC7E,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,oEAAqE,CAAA;uBAAC,QAAD;IAAM,UAAS;IAAU,GAAE;IAAqN,UAAS;IAAY,CAAA;GAAM"}