{"version":3,"file":"credit_card.mjs","names":[],"sources":["../../src/react/credit_card.tsx"],"sourcesContent":["import { useId, type SVGProps } from 'react';\n\nexport type CreditCardIconProps = 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 CreditCardIcon = ({ title, size, color, ...props }: CreditCardIconProps) => {\n  const titleId = useId();\n  return (\n    <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 -960 960 960\" focusable='false' role='img' width='1em' height='1em' fill='currentColor' aria-labelledby={title ? titleId : undefined} data-size={size} data-color={color} {...props}>{title ? <title id={titleId}>{title}</title> : null}<path d=\"M860-707.69v455.38Q860-222 839-201t-51.31 21H172.31Q142-180 121-201t-21-51.31v-455.38Q100-738 121-759t51.31-21h615.38Q818-780 839-759t21 51.31m-700 83.85h640v-83.85q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46zm0 127.68v243.85q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h615.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-243.85zM160-240v-480z\" /></svg>\n  );\n};"],"mappings":";;;AAiBA,MAAa,kBAAkB,EAAE,OAAO,MAAM,OAAO,GAAG,YAAiC;CACvF,MAAM,UAAU,OAAO;CACvB,OACE,qBAAC,OAAD;EAAK,OAAM;EAA6B,SAAQ;EAAiB,WAAU;EAAQ,MAAK;EAAM,OAAM;EAAM,QAAO;EAAM,MAAK;EAAe,mBAAiB,QAAQ,UAAU,KAAA;EAAW,aAAW;EAAM,cAAY;EAAO,GAAI;YAAjO,CAAyO,QAAQ,oBAAC,SAAD;GAAO,IAAI;aAAU;GAAc,CAAA,GAAG,MAAK,oBAAC,QAAD,EAAM,GAAE,mXAAoX,CAAA,CAAM"}