{"mappings":";;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;;;AAWD,IAAI;;;;;;;;;;;;;;;;AAuBW,kDACb,KAA+E;IAE/E,IAAI,QAAC,OAAO,KAAK,GAAG,YAAW,GAAG;IAClC,OAAQ;QACN,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAQ;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;QAErF,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAQ;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;QAErF,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAS;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;QAEtF,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAU;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;QAEvF,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAS;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;QAEtF,KAAK;YACH,qBACE,gCAAC,CAAA,GAAA,iCAAQ;gBAAG,GAAG,UAAU;gBAAE,WAAW,AAAC,CAAA,WAAW,SAAS,IAAI,EAAC,IAAK,6BAAO;0BAAC;gBAAI;;IAEvF;AACF","sources":["packages/@react-spectrum/ai/ui-icons/Chevron.tsx"],"sourcesContent":["/*\n * Copyright 2024 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport Chevron_L from './S2_ChevronSize200.svg';\nimport Chevron_M from './S2_ChevronSize100.svg';\nimport Chevron_S from './S2_ChevronSize75.svg';\nimport Chevron_XL from './S2_ChevronSize300.svg';\nimport Chevron_XS from './S2_ChevronSize50.svg';\nimport Chevron_XXL from './S2_ChevronSize400.svg';\nimport {ReactNode, SVGProps} from 'react';\nimport {style} from '@react-spectrum/s2/style' with {type: 'macro'};\n\nlet styles = style({\n  width: {\n    size: {\n      M: 10,\n      L: 12,\n      XL: 14,\n      XXL: 16,\n      XS: 6,\n      S: 10\n    }\n  },\n  height: {\n    size: {\n      M: 10,\n      L: 12,\n      XL: 14,\n      XXL: 16,\n      XS: 6,\n      S: 10\n    }\n  }\n});\n\nexport default function Chevron(\n  props: SVGProps<SVGSVGElement> & {size?: 'M' | 'L' | 'XL' | 'XXL' | 'XS' | 'S'}\n): ReactNode {\n  let {size = 'M', ...otherProps} = props;\n  switch (size) {\n    case 'M':\n      return (\n        <Chevron_M {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n    case 'L':\n      return (\n        <Chevron_L {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n    case 'XL':\n      return (\n        <Chevron_XL {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n    case 'XXL':\n      return (\n        <Chevron_XXL {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n    case 'XS':\n      return (\n        <Chevron_XS {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n    case 'S':\n      return (\n        <Chevron_S {...otherProps} className={(otherProps.className || '') + styles({size})} />\n      );\n  }\n}\n"],"names":[],"version":3,"file":"Chevron.cjs.map"}