{"version":3,"file":"keep.mjs","names":[],"sources":["../../src/react/keep.tsx"],"sourcesContent":["import { useId, type SVGProps } from 'react';\n\nexport type KeepIconProps = 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 KeepIcon = ({ title, size, color, ...props }: KeepIconProps) => {\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=\"M620-471.54 691.54-400v60H510v220l-30 30-30-30v-220H268.46v-60L340-471.54V-760h-40v-60h360v60h-40zM354-400h252l-46-46v-314H400v314zm126 0\" /></svg>\n  );\n};"],"mappings":";;;AAiBA,MAAa,YAAY,EAAE,OAAO,MAAM,OAAO,GAAG,YAA2B;CAC3E,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,6IAA8I,CAAA,CAAM"}