@leafygreen-ui/icon 11.7.0 → 11.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/glyphCommon.ts","../../src/createIconComponent.tsx","../../src/createGlyphComponent.tsx","../../src/glyphs/index.ts","../../src/isComponentGlyph.ts","../../src/index.ts"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\nexport default function createIconComponent<\n G extends GlyphObject = GlyphObject\n>(glyphs: G) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\nexport default function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n function GlyphComponent({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n }\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import createGlyphComponent from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nconst glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Database,\n Diagram,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n Stitch,\n Support,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\ntype GlyphName = keyof typeof glyphs;\n\nconst glyphKeys = Object.keys(glyphs) as Array<GlyphName>;\n\nconst processedGlyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n\nexport default processedGlyphs;\n","import { LGGlyph } from './types';\n\n/** Helper type to check if element is a LeafyGreen UI Glyph */\nexport function isComponentGlyph(\n child: React.ReactNode,\n): child is React.ReactElement<LGGlyph.ComponentProps> {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n}\n","import createIconComponent from './createIconComponent';\nimport glyphs from './glyphs';\n\nexport { default as createIconComponent } from './createIconComponent';\nexport { default as glyphs } from './glyphs';\nexport { Size } from './glyphCommon';\nexport { isComponentGlyph } from './isComponentGlyph';\nexport default createIconComponent(glyphs);\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","___EmotionJSX","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","aria-label","concat","replace","aria-hidden","alt","generateAccessibleProps","isGlyph","string","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Database","Diagram","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","Stitch","Support","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","processedGlyphs","reduce","acc","isComponentGlyph","child","_typeof","type"],"mappings":"0jCACU,IAACA,EAAO,CAChBC,MAAO,QACPC,QAAS,UACTC,MAAO,QACPC,OAAQ,UAECC,EAAU,CACnBC,MAAO,GACPC,QAAS,GACTC,MAAO,GACPC,OAAQ,ICVV,ICIIC,EDJAC,EAAY,CAAC,SAMF,SAASC,EAAoBC,GAC1C,IAAIC,EAAO,SAAcC,GACvB,IAAIC,EAAQD,EAAKC,MACbC,EAAOC,EAAyBH,EAAMJ,GAEtCQ,EAAeN,EAAOG,GAC1B,OAAOI,EAAcD,EAAcF,IAQrC,OALAH,EAAKO,YAAc,OACnBP,EAAKQ,UAAY,CACfN,MAAOO,EAAUC,MAAMC,OAAOC,KAAKb,IAASc,WAC5CC,KAAML,EAAUM,UAAU,CAACN,EAAUC,MAAMC,OAAOK,OAAO9B,IAAQuB,EAAUQ,UAEtEjB,ECdT,IAAIH,EAAY,CAAC,YAAa,OAAQ,OAAQ,QAAS,kBAAmB,aAAc,QAMzE,SAASqB,EAAqBC,EAAWC,GACtD,SAASC,EAAepB,GACtB,IAAIqB,MAEAC,EAAYtB,EAAKsB,UACjBC,EAAYvB,EAAKa,KACjBA,OAAqB,IAAdU,EAAuBtC,EAAKE,QAAUoC,EAC7CC,EAAOxB,EAAKwB,KACZC,EAAQzB,EAAKyB,MACbC,EAAiB1B,EAAK,mBACtB2B,EAAY3B,EAAK,cACjB4B,EAAY5B,EAAK6B,KACjBA,OAAqB,IAAdD,EAAuB,MAAQA,EACtC1B,EAAOC,EAAyBH,EAAMJ,GAEtCkC,EAAYC,EAAIpC,MAA6D,CAAC,kBAAmB,6BAA7DA,4EAA2E6B,GAC/GQ,EAA+B,iBAATnB,EAAoBA,EAAOvB,EAAQuB,GAM7D,MAJe,QAATgB,GAA2B,iBAATA,GACtBI,QAAQC,KAAK,oNAGR7B,EAAcc,EAAOgB,EAAS,CACnCb,UAAWc,EAAGC,EAAgB,GAAIP,EAAmB,MAARN,GAAeF,GAC5DgB,OAAQN,EACRO,MAAOP,EACPH,KAAMA,GF1BL,SAAiCA,EAAMX,EAAWlB,GACvD,IAAIwC,EAuBwBC,EArBxBd,EAAY3B,EAAK,cACjB0B,EAAiB1B,EAAK,mBACtByB,EAAQzB,EAAKyB,MAEjB,OAAQI,GACN,IAAK,MACH,OAAKF,GAAcD,GAAmBD,GAMnBY,EAAZG,EAAQ,GAA2B,kBAAmBd,GAAiBW,EAAgBG,EAAO,aAAcb,GAAYU,EAAgBG,EAAO,QAASf,GAAQe,GAL9J,CACLE,cAaoBD,EAbQvB,EAc7B,GAAGyB,OAAOF,EAAKG,QAAQ,kBAAmB,SAAU,WARzD,IAAK,eACH,MAAO,CACLC,eAAe,EACfC,IAAK,KEONC,CAAwBlB,EAAMX,GAE9BmB,EAF0ChB,EAAwB,CACnEI,MAAOA,GACiC,aAAcE,GAAYU,EAAgBhB,EAAuB,kBAAmBK,GAAiBL,IAAyBnB,IAU1K,OAPAkB,EAAed,YAAcY,EAC7BE,EAAe4B,SAAU,EACzB5B,EAAeb,UAAY,CACzBiB,KAAMhB,EAAUyC,OAChBpC,KAAML,EAAUM,UAAU,CAACN,EAAUC,MAAMC,OAAOK,OAAO9B,IAAQuB,EAAUQ,SAC3EM,UAAWd,EAAUyC,QAEhB7B,03sDC+CT,IAAItB,GAAS,CACXoD,yIACAC,oIACAC,iIACAC,kIACAC,sIACAC,sIACAC,uIACAC,oIACAC,mIACAC,iIACAC,qIACAC,mIACAC,qIACAC,sIACAC,sIACAC,uIACAC,oIACAC,mIACAC,uIACAC,kJACAC,0IACAC,0IACAC,2IACAC,wIACAC,oIACAC,gJACAC,uIACAC,oIACAC,gGACAC,sIACAC,mIACAC,yIACAC,0IACAC,6IACAC,sIACAC,yIACAC,uIACAC,sIACAC,uIACAC,wIACAC,uIACAC,mGACAC,qIACAC,2GACAC,0GACAC,qIACAC,yGACAC,oJACAC,sIACAC,kJACAC,6IACAC,4IACAC,kIACAC,wIACAC,mIACAC,8IACAC,wIACAC,mIACAC,oIACAC,yIACAC,sIACAC,4IACAC,oIACAC,wIACAC,uGACAC,gJACAC,mIACAC,mIACAC,6IACAC,qJACAC,mIACAC,sIACAC,yIACAC,sIACAC,yIACAC,6IACAC,uIACAC,iGACAC,4IACAC,6IACAC,yHACAC,sIACAC,oIACAC,yIACAC,oIACAC,mIACAC,yIACAC,qIACAC,uIACAC,+HACAC,qIACAC,+IACAC,yIACAC,4IACAC,sIACAC,gIACAC,2IAGEC,GADYzI,OAAOC,KAAKb,IACIsJ,QAAO,SAAUC,EAAK5G,GAEpD,OADA4G,EAAI5G,GAAQxB,EAAqBwB,EAAM3C,GAAO2C,IACvC4G,IACN,ICvMI,SAASC,GAAiBC,GAC/B,OAAgB,MAATA,GAAoC,WAAnBC,EAAQD,IAAuB,SAAUA,IAAgC,IAAvBA,EAAME,KAAKzG,QCEvF,OAAenD,EAAoBC"}
1
+ {"version":3,"file":"index.js","sources":["../../src/glyphCommon.ts","../../src/createIconComponent.tsx","../../src/createGlyphComponent.tsx","../../src/glyphs/index.ts","../../src/isComponentGlyph.ts","../../src/index.ts"],"sourcesContent":["export const Size = {\n Small: 'small',\n Default: 'default',\n Large: 'large',\n XLarge: 'xlarge',\n} as const;\n\nexport type Size = typeof Size[keyof typeof Size];\n\nexport const sizeMap: Record<Size, number> = {\n small: 14,\n default: 16,\n large: 20,\n xlarge: 24,\n} as const;\n\ninterface AccessibleFunctionParams {\n 'aria-labelledby'?: string;\n 'aria-label'?: string;\n title?: string | null;\n}\n\ntype AccessibleFunctionReturnType =\n | AccessibleFunctionParams\n | { 'aria-hidden': true; alt: '' };\n\nexport function generateAccessibleProps(\n role: 'img' | 'presentation',\n glyphName: string,\n {\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n title,\n }: AccessibleFunctionParams,\n): AccessibleFunctionReturnType {\n switch (role) {\n case 'img':\n if (!ariaLabel && !ariaLabelledby && !title) {\n return { 'aria-label': getGlyphLabel(glyphName) };\n }\n\n return {\n ['aria-labelledby']: ariaLabelledby,\n ['aria-label']: ariaLabel,\n title,\n };\n\n case 'presentation':\n return { 'aria-hidden': true, alt: '' };\n }\n}\n\nexport function getGlyphLabel(name: string) {\n return `${name.replace(/([a-z])([A-Z])/g, '$1 $2')} Icon`;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { LGGlyph } from './types';\nimport { Size } from './glyphCommon';\n\n// We omit size here because we map string values for size to numbers in this component.\nexport interface IconProps extends Omit<LGGlyph.ComponentProps, 'size'> {\n glyph: string;\n size?: Size | number;\n}\n\ntype GlyphObject = Record<string, LGGlyph.Component>;\n\n/**\n * Returns a single component with a `glyph` prop to select the glyph\n * @param glyphs The set of glyphs\n * @returns Icon component\n */\nexport default function createIconComponent<\n G extends GlyphObject = GlyphObject\n>(glyphs: G) {\n const Icon = ({ glyph, ...rest }: IconProps) => {\n const SVGComponent = glyphs[glyph];\n\n return <SVGComponent {...rest} />;\n };\n\n Icon.displayName = 'Icon';\n\n Icon.propTypes = {\n glyph: PropTypes.oneOf(Object.keys(glyphs)).isRequired,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n } as any;\n\n return Icon;\n}\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { SVGR, LGGlyph } from './types';\nimport { css, cx } from '@leafygreen-ui/emotion';\nimport { generateAccessibleProps, sizeMap, Size } from './glyphCommon';\n\n/**\n * Returns a single glyph component.\n * Process custom glyphs to ensure consistent behavior between custom and built-in icons\n * @param glyphName: string - the display name of the icon\n * @param Glyph: SVGR.Component - the SVG icon component\n * @returns LGGlyph.Component\n */\nexport default function createGlyphComponent(\n glyphName: string,\n Glyph: SVGR.Component,\n): LGGlyph.Component {\n function GlyphComponent({\n className,\n size = Size.Default,\n fill,\n title,\n 'aria-labelledby': ariaLabelledby,\n 'aria-label': ariaLabel,\n role = 'img',\n ...rest\n }: LGGlyph.ComponentProps) {\n const fillStyle = css`\n color: ${fill};\n `;\n\n const renderedSize = typeof size === 'number' ? size : sizeMap[size];\n\n if (!(role === 'img' || role === 'presentation')) {\n console.warn(\n \"Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'.\",\n );\n }\n\n return (\n <Glyph\n className={cx(\n {\n [fillStyle]: fill != null,\n },\n className,\n )}\n height={renderedSize}\n width={renderedSize}\n role={role}\n {...generateAccessibleProps(role, glyphName, {\n title,\n ['aria-label']: ariaLabel,\n ['aria-labelledby']: ariaLabelledby,\n })}\n {...rest}\n />\n );\n }\n\n GlyphComponent.displayName = glyphName;\n\n GlyphComponent.isGlyph = true;\n\n GlyphComponent.propTypes = {\n fill: PropTypes.string,\n size: PropTypes.oneOfType([\n PropTypes.oneOf(Object.values(Size)),\n PropTypes.number,\n ]),\n className: PropTypes.string,\n };\n\n return GlyphComponent;\n}\n","import createGlyphComponent from '../createGlyphComponent';\nimport { LGGlyph } from '../types';\n\n// Glyphs\nimport ActivityFeed from './ActivityFeed.svg';\nimport AddFile from './AddFile.svg';\nimport Apps from './Apps.svg';\nimport Array from './Array.svg';\nimport ArrowDown from './ArrowDown.svg';\nimport ArrowLeft from './ArrowLeft.svg';\nimport ArrowRight from './ArrowRight.svg';\nimport ArrowUp from './ArrowUp.svg';\nimport Beaker from './Beaker.svg';\nimport Bell from './Bell.svg';\nimport Building from './Building.svg';\nimport Bulb from './Bulb.svg';\nimport Calendar from './Calendar.svg';\nimport CaretDown from './CaretDown.svg';\nimport CaretLeft from './CaretLeft.svg';\nimport CaretRight from './CaretRight.svg';\nimport CaretUp from './CaretUp.svg';\nimport Charts from './Charts.svg';\nimport Checkmark from './Checkmark.svg';\nimport CheckmarkWithCircle from './CheckmarkWithCircle.svg';\nimport ChevronDown from './ChevronDown.svg';\nimport ChevronLeft from './ChevronLeft.svg';\nimport ChevronRight from './ChevronRight.svg';\nimport ChevronUp from './ChevronUp.svg';\nimport Clock from './Clock.svg';\nimport ClockWithArrow from './ClockWithArrow.svg';\nimport Clone from './Clone.svg';\nimport Cloud from './Cloud.svg';\nimport Code from './Code.svg';\nimport Connect from './Connect.svg';\nimport Copy from './Copy.svg';\nimport CreditCard from './CreditCard.svg';\nimport CurlyBraces from './CurlyBraces.svg';\nimport Database from './Database.svg';\nimport Diagram from './Diagram.svg';\nimport Disconnect from './Disconnect.svg';\nimport Download from './Download.svg';\nimport Edit from './Edit.svg';\nimport Ellipsis from './Ellipsis.svg';\nimport Export from './Export.svg';\nimport Favorite from './Favorite.svg';\nimport File from './File.svg';\nimport Filter from './Filter.svg';\nimport FullScreenEnter from './FullScreenEnter.svg';\nimport FullScreenExit from './FullScreenExit.svg';\nimport Folder from './Folder.svg';\nimport GlobeAmericas from './GlobeAmericas.svg';\nimport GovernmentBuilding from './GovernmentBuilding.svg';\nimport Home from './Home.svg';\nimport ImportantWithCircle from './ImportantWithCircle.svg';\nimport InfoWithCircle from './InfoWithCircle.svg';\nimport InviteUser from './InviteUser.svg';\nimport Key from './Key.svg';\nimport Laptop from './Laptop.svg';\nimport Lock from './Lock.svg';\nimport MagnifyingGlass from './MagnifyingGlass.svg';\nimport Megaphone from './Megaphone.svg';\nimport Menu from './Menu.svg';\nimport Minus from './Minus.svg';\nimport NotAllowed from './NotAllowed.svg';\nimport Note from './Note.svg';\nimport OpenNewTab from './OpenNewTab.svg';\nimport Pause from './Pause.svg';\nimport Person from './Person.svg';\nimport PersonGroup from './PersonGroup.svg';\nimport PersonWithLock from './PersonWithLock.svg';\nimport Play from './Play.svg';\nimport Plus from './Plus.svg';\nimport PlusWithCircle from './PlusWithCircle.svg';\nimport QuestionMarkWithCircle from './QuestionMarkWithCircle.svg';\nimport Redo from './Redo.svg';\nimport Refresh from './Refresh.svg';\nimport ReplicaSet from './ReplicaSet.svg';\nimport Save from './Save.svg';\nimport Serverless from './Serverless.svg';\nimport ShardedCluster from './ShardedCluster.svg';\nimport Settings from './Settings.svg';\nimport Shell from './Shell.svg';\nimport SortAscending from './SortAscending.svg';\nimport SortDescending from './SortDescending.svg';\nimport Stitch from './Stitch.svg';\nimport Support from './Support.svg';\nimport Table from './Table.svg';\nimport TimeSeries from './TimeSeries.svg';\nimport Trash from './Trash.svg';\nimport Undo from './Undo.svg';\nimport University from './University.svg';\nimport Unlock from './Unlock.svg';\nimport Unsorted from './Unsorted.svg';\nimport UpDownCarets from './UpDownCarets.svg';\nimport Upload from './Upload.svg';\nimport VerticalEllipsis from './VerticalEllipsis.svg';\nimport Visibility from './Visibility.svg';\nimport VisibilityOff from './VisibilityOff.svg';\nimport Warning from './Warning.svg';\nimport X from './X.svg';\nimport XWithCircle from './XWithCircle.svg';\n\nconst glyphs = {\n ActivityFeed,\n AddFile,\n Apps,\n Array,\n ArrowDown,\n ArrowLeft,\n ArrowRight,\n ArrowUp,\n Beaker,\n Bell,\n Building,\n Bulb,\n Calendar,\n CaretDown,\n CaretLeft,\n CaretRight,\n CaretUp,\n Charts,\n Checkmark,\n CheckmarkWithCircle,\n ChevronDown,\n ChevronLeft,\n ChevronRight,\n ChevronUp,\n Clock,\n ClockWithArrow,\n Clone,\n Cloud,\n Code,\n Connect,\n Copy,\n CreditCard,\n CurlyBraces,\n Database,\n Diagram,\n Disconnect,\n Download,\n Edit,\n Ellipsis,\n Export,\n Favorite,\n File,\n Filter,\n FullScreenEnter,\n FullScreenExit,\n Folder,\n GlobeAmericas,\n GovernmentBuilding,\n Home,\n ImportantWithCircle,\n InfoWithCircle,\n InviteUser,\n Key,\n Laptop,\n Lock,\n MagnifyingGlass,\n Megaphone,\n Menu,\n Minus,\n NotAllowed,\n Note,\n OpenNewTab,\n Pause,\n Person,\n PersonGroup,\n PersonWithLock,\n Play,\n Plus,\n PlusWithCircle,\n QuestionMarkWithCircle,\n Redo,\n Refresh,\n ReplicaSet,\n Save,\n Serverless,\n ShardedCluster,\n Settings,\n Shell,\n SortAscending,\n SortDescending,\n Stitch,\n Support,\n Table,\n TimeSeries,\n Trash,\n Undo,\n University,\n Unlock,\n Unsorted,\n UpDownCarets,\n Upload,\n VerticalEllipsis,\n Visibility,\n VisibilityOff,\n Warning,\n X,\n XWithCircle,\n} as const;\n\ntype GlyphName = keyof typeof glyphs;\n\nconst glyphKeys = Object.keys(glyphs) as Array<GlyphName>;\n\nconst processedGlyphs = glyphKeys.reduce((acc, name) => {\n acc[name] = createGlyphComponent(name, glyphs[name]);\n\n return acc;\n}, {} as Record<GlyphName, LGGlyph.Component>);\n\nexport default processedGlyphs;\n","import { LGGlyph } from './types';\n\n/** Helper type to check if element is a LeafyGreen UI Glyph */\nexport function isComponentGlyph(\n child: React.ReactNode,\n): child is React.ReactElement<LGGlyph.ComponentProps> {\n return (\n child != null &&\n typeof child === 'object' &&\n 'type' in child &&\n (child.type as any).isGlyph === true\n );\n}\n","import createIconComponent from './createIconComponent';\nimport glyphs from './glyphs';\n\nexport { LGGlyph } from './types';\nexport { Size } from './glyphCommon';\nexport { default as createIconComponent } from './createIconComponent';\nexport { default as createGlyphComponent } from './createGlyphComponent';\nexport { default as glyphs } from './glyphs';\nexport { isComponentGlyph } from './isComponentGlyph';\nexport default createIconComponent(glyphs);\n"],"names":["Size","Small","Default","Large","XLarge","sizeMap","small","default","large","xlarge","_templateObject","_excluded","createIconComponent","glyphs","Icon","_ref","glyph","rest","_objectWithoutProperties","SVGComponent","___EmotionJSX","displayName","propTypes","PropTypes","oneOf","Object","keys","isRequired","size","oneOfType","values","number","createGlyphComponent","glyphName","Glyph","GlyphComponent","_generateAccessiblePr","className","_ref$size","fill","title","ariaLabelledby","ariaLabel","_ref$role","role","fillStyle","css","renderedSize","console","warn","_extends","cx","_defineProperty","height","width","_ref2","name","aria-label","concat","replace","aria-hidden","alt","generateAccessibleProps","isGlyph","string","ActivityFeed","AddFile","Apps","Array","ArrowDown","ArrowLeft","ArrowRight","ArrowUp","Beaker","Bell","Building","Bulb","Calendar","CaretDown","CaretLeft","CaretRight","CaretUp","Charts","Checkmark","CheckmarkWithCircle","ChevronDown","ChevronLeft","ChevronRight","ChevronUp","Clock","ClockWithArrow","Clone","Cloud","Code","Connect","Copy","CreditCard","CurlyBraces","Database","Diagram","Disconnect","Download","Edit","Ellipsis","Export","Favorite","File","Filter","FullScreenEnter","FullScreenExit","Folder","GlobeAmericas","GovernmentBuilding","Home","ImportantWithCircle","InfoWithCircle","InviteUser","Key","Laptop","Lock","MagnifyingGlass","Megaphone","Menu","Minus","NotAllowed","Note","OpenNewTab","Pause","Person","PersonGroup","PersonWithLock","Play","Plus","PlusWithCircle","QuestionMarkWithCircle","Redo","Refresh","ReplicaSet","Save","Serverless","ShardedCluster","Settings","Shell","SortAscending","SortDescending","Stitch","Support","Table","TimeSeries","Trash","Undo","University","Unlock","Unsorted","UpDownCarets","Upload","VerticalEllipsis","Visibility","VisibilityOff","Warning","X","XWithCircle","processedGlyphs","reduce","acc","isComponentGlyph","child","_typeof","type"],"mappings":"0jCACU,IAACA,EAAO,CAChBC,MAAO,QACPC,QAAS,UACTC,MAAO,QACPC,OAAQ,UAECC,EAAU,CACnBC,MAAO,GACPC,QAAS,GACTC,MAAO,GACPC,OAAQ,ICVV,ICIIC,EDJAC,EAAY,CAAC,SAYF,SAASC,EAAoBC,GAC1C,IAAIC,EAAO,SAAcC,GACvB,IAAIC,EAAQD,EAAKC,MACbC,EAAOC,EAAyBH,EAAMJ,GAEtCQ,EAAeN,EAAOG,GAC1B,OAAOI,EAAcD,EAAcF,IAQrC,OALAH,EAAKO,YAAc,OACnBP,EAAKQ,UAAY,CACfN,MAAOO,EAAUC,MAAMC,OAAOC,KAAKb,IAASc,WAC5CC,KAAML,EAAUM,UAAU,CAACN,EAAUC,MAAMC,OAAOK,OAAO9B,IAAQuB,EAAUQ,UAEtEjB,ECpBT,IAAIH,EAAY,CAAC,YAAa,OAAQ,OAAQ,QAAS,kBAAmB,aAAc,QAczE,SAASqB,EAAqBC,EAAWC,GACtD,SAASC,EAAepB,GACtB,IAAIqB,MAEAC,EAAYtB,EAAKsB,UACjBC,EAAYvB,EAAKa,KACjBA,OAAqB,IAAdU,EAAuBtC,EAAKE,QAAUoC,EAC7CC,EAAOxB,EAAKwB,KACZC,EAAQzB,EAAKyB,MACbC,EAAiB1B,EAAK,mBACtB2B,EAAY3B,EAAK,cACjB4B,EAAY5B,EAAK6B,KACjBA,OAAqB,IAAdD,EAAuB,MAAQA,EACtC1B,EAAOC,EAAyBH,EAAMJ,GAEtCkC,EAAYC,EAAIpC,MAA6D,CAAC,kBAAmB,6BAA7DA,4EAA2E6B,GAC/GQ,EAA+B,iBAATnB,EAAoBA,EAAOvB,EAAQuB,GAM7D,MAJe,QAATgB,GAA2B,iBAATA,GACtBI,QAAQC,KAAK,oNAGR7B,EAAcc,EAAOgB,EAAS,CACnCb,UAAWc,EAAGC,EAAgB,GAAIP,EAAmB,MAARN,GAAeF,GAC5DgB,OAAQN,EACRO,MAAOP,EACPH,KAAMA,GFlCL,SAAiCA,EAAMX,EAAWlB,GACvD,IAAIwC,EAuBwBC,EArBxBd,EAAY3B,EAAK,cACjB0B,EAAiB1B,EAAK,mBACtByB,EAAQzB,EAAKyB,MAEjB,OAAQI,GACN,IAAK,MACH,OAAKF,GAAcD,GAAmBD,GAMnBY,EAAZG,EAAQ,GAA2B,kBAAmBd,GAAiBW,EAAgBG,EAAO,aAAcb,GAAYU,EAAgBG,EAAO,QAASf,GAAQe,GAL9J,CACLE,cAaoBD,EAbQvB,EAc7B,GAAGyB,OAAOF,EAAKG,QAAQ,kBAAmB,SAAU,WARzD,IAAK,eACH,MAAO,CACLC,eAAe,EACfC,IAAK,KEeNC,CAAwBlB,EAAMX,GAE9BmB,EAF0ChB,EAAwB,CACnEI,MAAOA,GACiC,aAAcE,GAAYU,EAAgBhB,EAAuB,kBAAmBK,GAAiBL,IAAyBnB,IAU1K,OAPAkB,EAAed,YAAcY,EAC7BE,EAAe4B,SAAU,EACzB5B,EAAeb,UAAY,CACzBiB,KAAMhB,EAAUyC,OAChBpC,KAAML,EAAUM,UAAU,CAACN,EAAUC,MAAMC,OAAOK,OAAO9B,IAAQuB,EAAUQ,SAC3EM,UAAWd,EAAUyC,QAEhB7B,03sDCuCT,IAAItB,GAAS,CACXoD,yIACAC,oIACAC,iIACAC,kIACAC,sIACAC,sIACAC,uIACAC,oIACAC,mIACAC,iIACAC,qIACAC,mIACAC,qIACAC,sIACAC,sIACAC,uIACAC,oIACAC,mIACAC,uIACAC,kJACAC,0IACAC,0IACAC,2IACAC,wIACAC,oIACAC,gJACAC,uIACAC,oIACAC,gGACAC,sIACAC,mIACAC,yIACAC,0IACAC,6IACAC,sIACAC,yIACAC,uIACAC,sIACAC,uIACAC,wIACAC,uIACAC,mGACAC,qIACAC,2GACAC,0GACAC,qIACAC,yGACAC,oJACAC,sIACAC,kJACAC,6IACAC,4IACAC,kIACAC,wIACAC,mIACAC,8IACAC,wIACAC,mIACAC,oIACAC,yIACAC,sIACAC,4IACAC,oIACAC,wIACAC,uGACAC,gJACAC,mIACAC,mIACAC,6IACAC,qJACAC,mIACAC,sIACAC,yIACAC,sIACAC,yIACAC,6IACAC,uIACAC,iGACAC,4IACAC,6IACAC,yHACAC,sIACAC,oIACAC,yIACAC,oIACAC,mIACAC,yIACAC,qIACAC,uIACAC,+HACAC,qIACAC,+IACAC,yIACAC,4IACAC,sIACAC,gIACAC,2IAGEC,GADYzI,OAAOC,KAAKb,IACIsJ,QAAO,SAAUC,EAAK5G,GAEpD,OADA4G,EAAI5G,GAAQxB,EAAqBwB,EAAM3C,GAAO2C,IACvC4G,IACN,uCCvMI,SAASC,GAAiBC,GAC/B,OAAgB,MAATA,GAAoC,WAAnBC,EAAQD,IAAuB,SAAUA,IAAgC,IAAvBA,EAAME,KAAKzG,QCIvF,OAAenD,EAAoBC"}
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  /// <reference types="react" />
2
+ export { LGGlyph } from './types';
3
+ export { Size } from './glyphCommon';
2
4
  export { default as createIconComponent } from './createIconComponent';
5
+ export { default as createGlyphComponent } from './createGlyphComponent';
3
6
  export { default as glyphs } from './glyphs';
4
- export { Size } from './glyphCommon';
5
7
  export { isComponentGlyph } from './isComponentGlyph';
6
8
  declare const _default: {
7
9
  ({ glyph, ...rest }: import("./createIconComponent").IconProps): JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAGA,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;;;;;;AACtD,wBAA2C"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;;;;;;AACtD,wBAA2C"}
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("prop-types"),require("@emotion/react"),require("@leafygreen-ui/emotion")):"function"==typeof define&&define.amd?define(["exports","react","prop-types","@emotion/react","@leafygreen-ui/emotion"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@leafygreen-ui/icon"]={},e.React,e.PropTypes,e.react,e["@leafygreen-ui/emotion"])}(this,(function(e,t,r,n,a){"use strict";function l(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=l(r);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function h(){return(h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function v(e,t){if(null==e)return{};var r,n,a=function(e,t){if(null==e)return{};var r,n,a={},l=Object.keys(e);for(n=0;n<l.length;n++)r=l[n],t.indexOf(r)>=0||(a[r]=e[r]);return a}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(n=0;n<l.length;n++)r=l[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r])}return a}var u={Small:"small",Default:"default",Large:"large",XLarge:"xlarge"},f={small:14,default:16,large:20,xlarge:24};var p,s=["glyph"];function w(e){var t=function(t){var r=t.glyph,a=v(t,s),l=e[r];return n.jsx(l,a)};return t.displayName="Icon",t.propTypes={glyph:o.default.oneOf(Object.keys(e)).isRequired,size:o.default.oneOfType([o.default.oneOf(Object.values(u)),o.default.number])},t}var g=["className","size","fill","title","aria-labelledby","aria-label","role"];function d(e,t){function r(r){var l,o,i,s=r.className,w=r.size,d=void 0===w?u.Default:w,m=r.fill,y=r.title,O=r["aria-labelledby"],b=r["aria-label"],z=r.role,E=void 0===z?"img":z,j=v(r,g),x=a.css(p||(o=["\n color: ",";\n "],i||(i=o.slice(0)),p=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(i)}}))),m),M="number"==typeof d?d:f[d];return"img"!==E&&"presentation"!==E&&console.warn("Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'."),n.jsx(t,h({className:a.cx(c({},x,null!=m),s),height:M,width:M,role:E},function(e,t,r){var n,a,l=r["aria-label"],o=r["aria-labelledby"],i=r.title;switch(e){case"img":return l||o||i?(c(n={},"aria-labelledby",o),c(n,"aria-label",l),c(n,"title",i),n):{"aria-label":(a=t,"".concat(a.replace(/([a-z])([A-Z])/g,"$1 $2")," Icon"))};case"presentation":return{"aria-hidden":!0,alt:""}}}(E,e,(c(l={title:y},"aria-label",b),c(l,"aria-labelledby",O),l)),j))}return r.displayName=e,r.isGlyph=!0,r.propTypes={fill:o.default.string,size:o.default.oneOfType([o.default.oneOf(Object.values(u)),o.default.number]),className:o.default.string},r}function m(){return(m=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var y=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13V7h4.5A1.5 1.5 0 007 5.5V1h2a2 2 0 012 2v4.515a2.5 2.5 0 00-2.612 1.602l-1.06 2.808A2.501 2.501 0 005.59 15H3a2 2 0 01-2-2zM4.914 1h.92v3.833a1 1 0 01-1 1H1v-.919a1 1 0 01.293-.707L2.5 3l1.707-1.707A1 1 0 014.914 1zM10.8 9.003a1 1 0 01.904.784l.61 2.792.508-.714a1 1 0 01.814-.42H15a1 1 0 010 2h-.848l-1.519 2.135a1 1 0 01-1.792-.367l-.371-1.701-.444 1.175a1 1 0 01-.935.646H8a1 1 0 110-2h.4l1.392-3.686a1 1 0 011.008-.644z",fill:"currentColor"});function O(){return(O=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var b=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 7v6a2 2 0 002 2h5.968a2.25 2.25 0 01.794-4.238A2.251 2.251 0 0111 8.984V3a2 2 0 00-2-2H7v4.5A1.5 1.5 0 015.5 7H1zm8 6a1 1 0 001 1h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1v-1a1 1 0 10-2 0v1h-1a1 1 0 00-1 1zM5.833 1h-.919a1 1 0 00-.707.293L2.5 3 1.293 4.207A1 1 0 001 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function z(){return(z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var E=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3H3v4h4V3zm0 6H3v4h4V9zm2-6h4v4H9V3zm4 6H9v4h4V9z",fill:"currentColor"});function j(){return(j=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var x=t.createElement("path",{d:"M2.5 1a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H4V3h2.5a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM13.5 1a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-4a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H12V3H9.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h4z",fill:"currentColor"});function M(){return(M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var C=t.createElement("path",{d:"M9.168 3v6.944l1.535-1.535a1 1 0 011.414 0l.239.24a1 1 0 010 1.414l-3.383 3.382c-.008.01-.017.018-.026.027l-.239.24a1 1 0 01-1.414 0L3.643 10.06a1 1 0 010-1.414l.239-.239a1 1 0 011.414 0L6.83 9.941V3a1 1 0 011-1h.338a1 1 0 011 1z",fill:"currentColor"});function V(){return(V=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var H=t.createElement("path",{d:"M13 6.832H6.056L7.59 5.297a1 1 0 000-1.414l-.24-.239a1 1 0 00-1.414 0L2.555 7.027c-.01.008-.018.017-.027.026l-.24.239a1 1 0 000 1.414l3.652 3.651a1 1 0 001.414 0l.239-.239a1 1 0 000-1.414L6.059 9.17H13a1 1 0 001-1v-.338a1 1 0 00-1-1z",fill:"currentColor"});function P(){return(P=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var R=t.createElement("path",{d:"M3 6.832h6.944L8.41 5.297a1 1 0 010-1.414l.24-.239a1 1 0 011.414 0l3.382 3.383c.01.008.018.017.027.026l.24.239a1 1 0 010 1.414l-3.652 3.651a1 1 0 01-1.414 0l-.239-.239a1 1 0 010-1.414L9.941 9.17H3a1 1 0 01-1-1v-.338a1 1 0 011-1z",fill:"currentColor"});function B(){return(B=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var L=t.createElement("path",{d:"M9.168 13V6.056l1.535 1.535a1 1 0 001.414 0l.239-.24a1 1 0 000-1.414L8.973 2.555a1.023 1.023 0 00-.026-.027l-.239-.24a1 1 0 00-1.414 0L3.643 5.94a1 1 0 000 1.414l.239.239a1 1 0 001.414 0L6.83 6.059V13a1 1 0 001 1h.338a1 1 0 001-1z",fill:"currentColor"});function A(){return(A=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var S=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.953 1.8c0-.28 0-.42.054-.527a.5.5 0 01.219-.218C6.333 1 6.473 1 6.753 1h2.4c.28 0 .42 0 .527.054a.5.5 0 01.218.219c.055.107.055.247.055.527v.4c0 .28 0 .42-.055.527a.5.5 0 01-.218.219C9.573 3 9.433 3 9.153 3h-2.4c-.28 0-.42 0-.527-.054a.5.5 0 01-.219-.219c-.054-.107-.054-.247-.054-.527v-.4zm.056 2.47c-.056.108-.056.25-.056.535V6l-3.007 5.412c-.663 1.193-.994 1.79-.932 2.277a1.5 1.5 0 00.6 1.02C3.01 15 3.693 15 5.057 15h5.791c1.365 0 2.047 0 2.444-.291a1.5 1.5 0 00.6-1.02c.062-.488-.27-1.084-.932-2.277L9.953 6V4.805c0-.285 0-.427-.056-.535a.5.5 0 00-.214-.214C9.575 4 9.433 4 9.148 4h-2.39c-.285 0-.427 0-.536.056a.5.5 0 00-.213.214zM9.333 9l-3.03.5-1.287 2.31c-.218.392-.327.588-.309.748a.5.5 0 00.205.348c.13.094.355.094.802.094h4.48c.447 0 .67 0 .801-.094a.5.5 0 00.205-.348c.019-.16-.09-.355-.307-.746L9.333 9z",fill:"currentColor"});function k(){return(k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var D=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.625 6.138a4.656 4.656 0 00-3.268-3.925C9.228 1.52 8.67 1 8 1c-.67 0-1.228.52-1.357 1.213a4.656 4.656 0 00-3.268 3.925l-.452 3.963h.026a.95.95 0 000 1.899h10.102a.95.95 0 000-1.899h.026l-.452-3.963zM8 15a2 2 0 01-2-2h4a2 2 0 01-2 2z",fill:"currentColor"});function T(){return(T=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var U=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 2a1 1 0 011-1h5a1 1 0 011 1v13H6v-2H4v2H1v-4h4.5a.5.5 0 000-1H1V8h4.5a.5.5 0 000-1H1V5h4.5a.5.5 0 000-1H1V2zm8 9h4.5a.5.5 0 000-1H9V8h4.5a.5.5 0 000-1H9V5a1 1 0 011-1h5a1 1 0 011 1v10h-2v-2h-2v2H9v-4z",fill:"currentColor"});function I(){return(I=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var N=t.createElement("path",{d:"M12.331 8.5a5 5 0 10-8.612.086L5.408 11.5a1 1 0 00.866.499H6.5V6a1.5 1.5 0 113 0v6h.224a1 1 0 00.863-.496L12.34 8.5h-.009z",fill:"currentColor"}),W=t.createElement("path",{d:"M7.5 6v6h1V6a.5.5 0 00-1 0zM10 14v-1H6v1a1 1 0 001 1h2a1 1 0 001-1z",fill:"currentColor"});function F(){return(F=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var _=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 012 0v1a1 1 0 01-2 0V2zm5 1H8a2 2 0 11-4 0 2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2 2 2 0 11-4 0zm1 0a1 1 0 102 0V2a1 1 0 10-2 0v1zm2 4h-3v3h3V7z",fill:"currentColor"});function G(){return(G=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var q=t.createElement("path",{d:"M8.679 10.796a.554.554 0 01-.858 0L4.64 6.976C4.32 6.594 4.582 6 5.069 6h6.362c.487 0 .748.594.43.976l-3.182 3.82z",fill:"currentColor"});function X(){return(X=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var $=t.createElement("path",{d:"M5.204 8.679a.553.553 0 010-.858l3.82-3.181c.382-.319.976-.058.976.429v6.362c0 .487-.594.748-.976.43l-3.82-3.182z",fill:"currentColor"});function K(){return(K=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Q=t.createElement("path",{d:"M10.796 7.321a.554.554 0 010 .858l-3.82 3.181c-.382.319-.976.058-.976-.429V4.57c0-.487.594-.748.976-.43l3.82 3.182z",fill:"currentColor"});function Z(){return(Z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var J=t.createElement("path",{d:"M7.321 5.204a.553.553 0 01.858 0l3.181 3.82c.319.382.058.976-.429.976H4.57c-.487 0-.748-.594-.43-.976l3.182-3.82z",fill:"currentColor"});function Y(){return(Y=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ee=t.createElement("path",{d:"M11.5 13a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1a1 1 0 00-1 1v10zM7.5 14a1 1 0 01-1-1V6a1 1 0 011-1h1a1 1 0 011 1v7a1 1 0 01-1 1h-1zM2.5 14a1 1 0 01-1-1V9a1 1 0 011-1h1a1 1 0 011 1v4a1 1 0 01-1 1h-1z",fill:"currentColor"});function te(){return(te=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var re=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.306 9.05l5.455-5.455a1 1 0 011.414 0l.707.707a1 1 0 010 1.414l-7.067 7.068a1 1 0 01-1.5-.098l-3.049-3.97a1 1 0 01.184-1.402l.595-.457a1.25 1.25 0 011.753.23L6.306 9.05z",fill:"currentColor"});function ne(){return(ne=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ae=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm2.448-10.104a.997.997 0 111.508 1.306l-4.572 5.28a1 1 0 01-1.64-.07l-1.82-2.868a1 1 0 111.69-1.07l1.1 1.734 3.734-4.312z",fill:"currentColor"});function le(){return(le=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var oe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.636 5.364a1 1 0 000 1.414l4.95 4.95.707.707a1 1 0 001.414 0l.707-.707 4.95-4.95a1 1 0 000-1.414l-.707-.707a1 1 0 00-1.414 0L8 8.899 3.757 4.657a1 1 0 00-1.414 0l-.707.707z",fill:"currentColor"});function ie(){return(ie=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ce=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.778 1.636a1 1 0 00-1.414 0l-4.95 4.95-.707.707a1 1 0 000 1.414l.707.707 4.95 4.95a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L7.243 8l4.242-4.243a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function he(){return(he=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ve=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.364 14.364a1 1 0 001.414 0l4.95-4.95.707-.707a1 1 0 000-1.414l-.707-.707-4.95-4.95a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L8.899 8l-4.242 4.243a1 1 0 000 1.414l.707.707z",fill:"currentColor"});function ue(){return(ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var fe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.364 10.778a1 1 0 000-1.414l-4.95-4.95-.707-.707a1 1 0 00-1.414 0l-.707.707-4.95 4.95a1 1 0 000 1.414l.707.707a1 1 0 001.414 0L8 7.243l4.243 4.242a1 1 0 001.414 0l.707-.707z",fill:"currentColor"});function pe(){return(pe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var se=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 14A6 6 0 108 2a6 6 0 000 12zm-.75-9.25a.75.75 0 011.5 0v3.16l1.744 1.526a.75.75 0 01-.988 1.128L7.511 8.818a.761.761 0 01-.19-.25.747.747 0 01-.071-.318v-3.5z",fill:"currentColor"});function we(){return(we=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ge=t.createElement("path",{d:"M13 8a5 5 0 01-7.304 4.438c-.348-.18-.787-.13-1.038.172l-.33.398c-.276.33-.22.828.152 1.044a7 7 0 10-1.452-10.98L1.97 2.146a.584.584 0 00-.964.521l.455 3.252c.04.287.285.51.576.511H5.32a.58.58 0 00.387-1.018l-1.168-1.02A5 5 0 0113 8z",fill:"currentColor"}),de=t.createElement("path",{d:"M7.25 5.25a.75.75 0 011.5 0v2.668l1.68 1.524a.75.75 0 11-.988 1.129L7.507 8.815a.758.758 0 01-.257-.565v-3z",fill:"currentColor"});function me(){return(me=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ye=t.createElement("path",{d:"M5.5 12a2 2 0 002 2h5a2 2 0 002-2V8a2 2 0 00-2-2h-5a2 2 0 00-2 2v4z",fill:"currentColor"}),Oe=t.createElement("path",{d:"M4.25 10H3.5a2 2 0 01-2-2V4a2 2 0 012-2h5a2 2 0 012 2v.75h-2V4h-5v4h.75v2z",fill:"currentColor"});function be(){return(be=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ze=t.createElement("path",{d:"M12.571 8.143c0 1.775-.899 3.34-2.267 4.264l-.014.01a5.12 5.12 0 01-2.861.869H2.857a2.857 2.857 0 01-.545-5.663 5.144 5.144 0 0110.26.52zM13.821 8.143a6.38 6.38 0 01-2.358 4.96 3.429 3.429 0 102.17-6.506c.123.494.188 1.013.188 1.546z",fill:"currentColor"});function Ee(){return(Ee=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var je=t.createElement("path",{d:"M6.11 13.262a.5.5 0 00.395.586l.737.143a.5.5 0 00.585-.396L9.926 2.738a.5.5 0 00-.396-.586l-.737-.143a.5.5 0 00-.585.396L6.109 13.262zM1.36 7.246L3.976 5.11a.507.507 0 01.704.063l.64.752a.483.483 0 01-.064.69L3.562 7.998 5.256 9.38c.212.173.24.482.064.69l-.64.752a.507.507 0 01-.704.062L1.36 8.75A.971.971 0 011 7.998c0-.29.132-.566.36-.752zM14.636 7.246L12.02 5.11a.507.507 0 00-.704.063l-.64.752a.483.483 0 00.064.69l1.694 1.382L10.74 9.38a.483.483 0 00-.064.69l.64.752a.507.507 0 00.704.062l2.616-2.134a.971.971 0 00.36-.752.971.971 0 00-.36-.752z",fill:"currentColor"});function xe(){return(xe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Me=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.867 8.898a4.048 4.048 0 00.687-4.8l1.275-1.275a.584.584 0 000-.826l-.826-.826a.584.584 0 00-.826 0l-1.29 1.29a4.048 4.048 0 00-4.734.722L5.277 5.058a.323.323 0 00-.041.035L3.182 7.148a4.048 4.048 0 00-.72 4.738l-1.29 1.29a.584.584 0 000 .827l.825.826a.584.584 0 00.826 0l1.278-1.278a4.048 4.048 0 004.795-.689l1.876-1.875a.324.324 0 00.041-.035l2.054-2.054zM6.561 6.776L4.685 8.65a1.916 1.916 0 000 2.707c.747.746 1.961.747 2.707 0l2.055-2.054a.321.321 0 01.04-.035l1.877-1.875a1.916 1.916 0 000-2.707 1.916 1.916 0 00-2.707 0L6.602 6.74a.32.32 0 01-.04.035z",fill:"currentColor"});function Ce(){return(Ce=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ve=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.714v4.572C1 11.233 1.768 12 2.714 12H5.75V7.11c0-.566.227-1.108.63-1.504l2.294-2.252c.1-.099.21-.186.326-.262v-.378C9 1.768 8.232 1 7.286 1H5.8v3.429c0 .71-.576 1.285-1.286 1.285H1zm8-.928L7.257 6.498A.857.857 0 007 7.11v.688h3.01a.857.857 0 00.857-.858V4h-.717a.857.857 0 00-.6.246l-.55.54zM4.867 1H4.15a.857.857 0 00-.601.246L1.257 3.498A.857.857 0 001 4.11v.688h3.01a.857.857 0 00.857-.858V1zM7 12V8.714H10.514c.71 0 1.286-.575 1.286-1.285V4h1.486C14.233 4 15 4.768 15 5.714v7.572c0 .947-.768 1.714-1.714 1.714H8.714A1.714 1.714 0 017 13.286V12z",fill:"currentColor"});function He(){return(He=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Pe=t.createElement("path",{d:"M3 3a2 2 0 00-2 2h14a2 2 0 00-2-2H3zM15 7H1v4a2 2 0 002 2h10a2 2 0 002-2V7z",fill:"currentColor"});function Re(){return(Re=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Be=t.createElement("path",{d:"M3 3.544a2.5 2.5 0 012.5-2.5h1a.5.5 0 01.5.5v1.105a.353.353 0 01-.353.353h-.79A.858.858 0 005 3.86v2.802a1.5 1.5 0 01-.816 1.335A1.5 1.5 0 015 9.332v2.803c0 .473.384.857.858.857h.789c.195 0 .353.158.353.353v1.105a.5.5 0 01-.5.5h-1a2.5 2.5 0 01-2.5-2.5v-1.956a1.5 1.5 0 00-1.5-1.5.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5 1.5 1.5 0 001.5-1.5v-1.95zM13 12.45a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 01-.5-.5v-1.105c0-.195.158-.353.353-.353h.79a.858.858 0 00.857-.858V9.332a1.5 1.5 0 01.816-1.335A1.5 1.5 0 0111 6.662V3.859a.858.858 0 00-.858-.857h-.789A.353.353 0 019 2.65V1.544a.5.5 0 01.5-.5h1a2.5 2.5 0 012.5 2.5V5.5A1.5 1.5 0 0014.5 7a.5.5 0 01.5.5v1a.5.5 0 01-.5.5 1.5 1.5 0 00-1.5 1.5v1.95z",fill:"currentColor"});function Le(){return(Le=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ae=t.createElement("path",{d:"M14 4.111c0 .098 0 .193-.002.286L14 4.5v.25c0 .328-.148.642-.472.95-.33.314-.818.598-1.424.834-1.211.473-2.772.716-4.104.716-1.332 0-2.893-.243-4.104-.716-.606-.236-1.094-.52-1.424-.834C2.148 5.392 2 5.078 2 4.75V4.5c0-.039 0-.077.003-.115C2 4.295 2 4.205 2 4.11 2 2 5.041 1 8 1s6 1 6 3.111z",fill:"currentColor"}),Se=t.createElement("path",{d:"M2 6.615V8.75c0 .328.148.642.472.95.33.315.818.598 1.424.834 1.211.473 2.772.716 4.104.716 1.332 0 2.893-.243 4.104-.716.606-.237 1.094-.52 1.424-.834.324-.308.472-.622.472-.95V6.615c-.428.347-.96.627-1.533.85-1.349.528-3.037.785-4.467.785-1.43 0-3.118-.257-4.467-.784-.573-.224-1.105-.504-1.533-.85z",fill:"currentColor"}),ke=t.createElement("path",{d:"M12.467 11.466c.573-.224 1.105-.504 1.533-.85v.884c0 .038 0 .076-.003.114.002.09.003.182.003.275C14 14 10.959 15 8 15s-6-1-6-3.111c0-.097 0-.193.002-.287A2.546 2.546 0 012 11.5v-.885c.428.347.96.627 1.533.85 1.349.528 3.037.785 4.467.785 1.43 0 3.118-.257 4.467-.784z",fill:"currentColor"});function De(){return(De=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Te=t.createElement("path",{d:"M6 2.75A.75.75 0 016.75 2h2.5a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75H8.5v2h4.75a.75.75 0 01.75.75V10h.25a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H13V8H8.5v2H9a.75.75 0 01.75.75v1.5A.75.75 0 019 13H7a.75.75 0 01-.75-.75v-1.5A.75.75 0 017 10h.5V8H3v2h.75a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H2V7.75A.75.75 0 012.75 7H7.5V5h-.75A.75.75 0 016 4.25v-1.5z",fill:"currentColor"});function Ue(){return(Ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ie=t.createElement("path",{d:"M7.093 3.671a.317.317 0 010-.448L8.14 2.175a4.024 4.024 0 015.685 0 4.024 4.024 0 010 5.685l-1.048 1.047a.317.317 0 01-.448 0L11.28 7.86a.317.317 0 010-.449l1.048-1.047a1.906 1.906 0 000-2.693 1.906 1.906 0 00-2.693 0L8.59 4.718a.317.317 0 01-.449 0L7.093 3.671zM1.293 1.293a1.001 1.001 0 011.416 0l11.998 11.998a1.001 1.001 0 01-1.416 1.416l-3.159-3.16-2.272 2.277a4.024 4.024 0 01-5.685 0 4.024 4.024 0 010-5.684l2.273-2.277L1.293 2.71a1.001 1.001 0 010-1.416zm4.65 6.066L3.672 9.636a1.906 1.906 0 000 2.693c.743.742 1.95.742 2.693 0l2.272-2.277-2.692-2.693z",fill:"currentColor"});function Ne(){return(Ne=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var We=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.524 2.575v5.557h1.712c.706 0 1.033.783.5 1.196l-3.237 2.506a.832.832 0 01-.998 0L4.265 9.328c-.534-.413-.207-1.196.499-1.196h1.611V2.575a1.575 1.575 0 013.15 0zM2.5 11h1.8l2.405 1.862a2.132 2.132 0 002.59 0L11.7 11h1.8a1.5 1.5 0 010 3h-11a1.5 1.5 0 010-3z",fill:"currentColor"});function Fe(){return(Fe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var _e=t.createElement("g",{clipPath:"url(#Edit_svg__clip0)"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.922 1.681a.963.963 0 011.362 0l1.363 1.363a.963.963 0 010 1.362L13.284 5.77 10.56 3.044 9.538 4.066l2.725 2.725-7.154 7.153-3.746 1.022 1.021-3.747 9.538-9.538z",fill:"currentColor"})),Ge=t.createElement("defs",null,t.createElement("clipPath",{id:"Edit_svg__clip0"},t.createElement("path",{fill:"currentColor",d:"M0 0h16v16H0z"})));function qe(){return(qe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Xe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 6a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm5 0a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm6.75 1.75a1.75 1.75 0 10-3.5 0 1.75 1.75 0 003.5 0z",fill:"currentColor"});function $e(){return($e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ke=t.createElement("path",{d:"M14.623 5.186a.278.278 0 000-.385l-2.805-2.915a.277.277 0 00-.477.192v1.424A6.5 6.5 0 005 10v.1a1.5 1.5 0 003 0V10a3.5 3.5 0 013.34-3.496v1.405c0 .25.305.373.478.193l2.805-2.916z",fill:"currentColor"}),Qe=t.createElement("path",{d:"M6.5 3.879a.75.75 0 00-.75-.75H4a2 2 0 00-2 2v6.864a2 2 0 002 2h6.864a2 2 0 002-2V10.05a.75.75 0 00-1.5 0v1.943a.5.5 0 01-.5.5H4a.5.5 0 01-.5-.5V5.129a.5.5 0 01.5-.5h1.75a.75.75 0 00.75-.75z",fill:"currentColor"});function Ze(){return(Ze=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Je=t.createElement("path",{d:"M7.538 1.11a.5.5 0 01.924 0l1.537 3.696a.5.5 0 00.421.306l3.99.32a.5.5 0 01.285.878l-3.04 2.604a.5.5 0 00-.16.496l.928 3.893a.5.5 0 01-.747.542L8.261 11.76a.5.5 0 00-.522 0l-3.415 2.086a.5.5 0 01-.747-.542l.928-3.893a.5.5 0 00-.16-.496L1.304 6.31a.5.5 0 01.285-.878l3.99-.32A.5.5 0 006 4.806L7.538 1.11z",fill:"currentColor"});function Ye(){return(Ye=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var et=t.createElement("path",{d:"M3 13V7h4.5A1.5 1.5 0 009 5.5V1h2a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2z",fill:"currentColor"}),tt=t.createElement("path",{d:"M7.833 1h-.919a1 1 0 00-.707.293L3.293 4.207A1 1 0 003 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function rt(){return(rt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var nt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 6.148l-3.8-3.94C1.797 1.79 2.044 1 2.576 1h10.848c.532 0 .779.79.377 1.208L10 6.148v5.625a.5.5 0 01-.17.376l-3 2.625a.5.5 0 01-.83-.376v-8.25z",fill:"currentColor"});function at(){return(at=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var lt=t.createElement("path",{d:"M1.5 2a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM15 2.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM1.5 14a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM14.5 14a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ot(){return(ot=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var it=t.createElement("path",{d:"M10.5 7a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM6 9.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM10.5 9a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM5.5 7a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ct(){return(ct=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ht=t.createElement("path",{d:"M2 1a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1V4a1 1 0 00-1-1H8a1 1 0 01-1-1 1 1 0 00-1-1H2z",fill:"currentColor"});function vt(){return(vt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ut=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 8A6 6 0 112 8a6 6 0 0112 0zm-5.301 4.699A4.73 4.73 0 015 11.683V10L3.257 8.257A4.75 4.75 0 018 3.25V4.5L6.5 6v1l-.5.5-.5-.5-1 1 .5.5h2.5L8 9v1l-1 1 1.699 1.699zm4.047-4.496a4.73 4.73 0 00-.924-3.025L10.5 6.5V9h1.25l.996-.797z",fill:"currentColor"});function ft(){return(ft=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pt=t.createElement("path",{d:"M11 5V4a3 3 0 00-6 0v1h6z",fill:"currentColor"}),st=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 000 1H2v6h-.5a.5.5 0 000 1h13a.5.5 0 000-1H14V7h.5a.5.5 0 000-1h-13zm3 2.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3zM8 8a.5.5 0 00-.5.5v3a.5.5 0 001 0v-3A.5.5 0 008 8zm2.5.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3z",fill:"currentColor"});function wt(){return(wt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var gt=t.createElement("path",{d:"M7.52 2.4a.75.75 0 01.96 0l5.13 4.275a.5.5 0 01.06.71l-.217.253a.5.5 0 01-.686.07l-4.46-3.47a.5.5 0 00-.614 0l-4.46 3.47a.5.5 0 01-.686-.07l-.217-.253a.5.5 0 01.06-.71L7.52 2.4z",fill:"currentColor"}),dt=t.createElement("path",{d:"M7.685 5.43L4 8.316v4.922c0 .42.336.762.75.762H6.5a.5.5 0 00.5-.5v-2.04c0-.281.224-.509.5-.509h1c.276 0 .5.228.5.508V13.5a.5.5 0 00.5.5h1.75c.414 0 .75-.341.75-.762V8.316L8.315 5.43a.494.494 0 00-.63 0z",fill:"currentColor"});function mt(){return(mt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var yt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 4.5a1 1 0 012 0v4a1 1 0 01-2 0v-4zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function Ot(){return(Ot=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var bt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM9 4a1 1 0 11-2 0 1 1 0 012 0zM8 6a1 1 0 011 1v4h.5a.5.5 0 010 1h-3a.5.5 0 010-1H7V7h-.5a.5.5 0 010-1H8z",fill:"currentColor"});function zt(){return(zt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Et=t.createElement("path",{d:"M8.418 7.428a3.5 3.5 0 10-3.836-5.856 3.5 3.5 0 003.836 5.856zM3.091 8.562c.308-.357.838-.339 1.252-.112.64.35 1.375.55 2.157.55s1.517-.2 2.157-.55c.414-.227.944-.245 1.252.112.11.128.214.263.31.403A1.996 1.996 0 009.5 10.5 2 2 0 008.177 14H2v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"}),jt=t.createElement("path",{d:"M10.5 10.5a.998.998 0 011-1 1 1 0 011 1v1h1a1 1 0 110 2h-1v1a1 1 0 11-2 0v-1h-1a1 1 0 110-2h1v-1z",fill:"currentColor"});function xt(){return(xt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Mt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 10c.554 0 1.082-.113 1.562-.317L8.88 11l-.44.44a1.5 1.5 0 002.122 2.12l.439-.439.44.44a1.5 1.5 0 002.12-2.122L9.684 7.562A4 4 0 106 10zm-.75-3.5a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z",fill:"currentColor"});function Ct(){return(Ct=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Vt=t.createElement("path",{d:"M5 6a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5A.5.5 0 015 6zM5.5 7.5a.5.5 0 000 1h3a.5.5 0 000-1h-3z",fill:"currentColor"}),Ht=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.5a1 1 0 00-1 1v7.813l-.29.49a.91.91 0 00-.068.1L1 13a1 1 0 001 1h12a1 1 0 001-1l-.642-1.096a.901.901 0 00-.067-.1L14 11.313V3.5a1 1 0 00-1-1H3zM12.5 4h-9v6.5h9V4z",fill:"currentColor"});function Pt(){return(Pt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Rt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 7V5a4 4 0 118 0v2a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1V8a1 1 0 011-1zm2-2a2 2 0 114 0v2H6V5zm2.587 5.81A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Bt(){return(Bt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Lt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.323 9.819a5.302 5.302 0 006.463.805l4.144 4.144a1.3 1.3 0 101.838-1.838l-4.144-4.144a5.302 5.302 0 00-8.3-6.463 5.3 5.3 0 000 7.496zM7.98 4.162A2.7 2.7 0 114.162 7.98 2.7 2.7 0 017.98 4.162z",fill:"currentColor"});function At(){return(At=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var St=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3l5.725-1.636A1 1 0 0113 2.326v7.348a1 1 0 01-1.275.962L6 9H3a2 2 0 01-2-2V5a2 2 0 012-2h3zm-.657 7H3v5h2.98a1 1 0 00.918-1.396L5.343 10zM16 6a2 2 0 01-2 2V4a2 2 0 012 2z",fill:"currentColor"});function kt(){return(kt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Dt=t.createElement("path",{d:"M2 4a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM3 11a1 1 0 100 2h10a1 1 0 100-2H3z",fill:"currentColor"});function Tt(){return(Tt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ut=t.createElement("path",{d:"M3 6.5a1 1 0 00-1 1v1a1 1 0 001 1h10a1 1 0 001-1v-1a1 1 0 00-1-1H3z",fill:"currentColor"});function It(){return(It=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Nt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.75 8a3.75 3.75 0 01-5.485 3.326l5.06-5.06c.272.518.425 1.108.425 1.734zM4.674 9.735l5.06-5.06a3.75 3.75 0 00-5.06 5.06zM14 8A6 6 0 112 8a6 6 0 0112 0z",fill:"currentColor"});function Wt(){return(Wt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ft=t.createElement("path",{d:"M4.5 6.25a.75.75 0 01.75-.75h3.5a.75.75 0 010 1.5h-3.5a.75.75 0 01-.75-.75zM4.5 8.75A.75.75 0 015.25 8h1.5a.75.75 0 010 1.5h-1.5a.75.75 0 01-.75-.75z",fill:"currentColor"}),_t=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 10l-4 4H3a2 2 0 01-2-2V4a2 2 0 012-2h10a2 2 0 012 2v6zm-2-6H3v8h7v-2a1 1 0 011-1h2V4z",fill:"currentColor"});function Gt(){return(Gt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var qt=t.createElement("path",{d:"M13.823 2.45a.278.278 0 00-.272-.273l-4.045-.079a.277.277 0 00-.201.474l1.08 1.08-2.45 2.452a1.395 1.395 0 00-.148.174L5.999 8.065a1.369 1.369 0 101.936 1.936l1.787-1.788c.061-.043.12-.093.174-.147l2.451-2.452 1.081 1.081a.277.277 0 00.474-.201l-.079-4.045z",fill:"currentColor"}),Xt=t.createElement("path",{d:"M7.25 3.129a.75.75 0 010 1.5H4a.5.5 0 00-.5.5v6.864a.5.5 0 00.5.5h6.864a.5.5 0 00.5-.5V8.75a.75.75 0 011.5 0v3.243a2 2 0 01-2 2H4a2 2 0 01-2-2V5.129a2 2 0 012-2h3.25z",fill:"currentColor"});function $t(){return($t=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Kt=t.createElement("path",{d:"M4.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1zM10.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function Qt(){return(Qt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Zt=t.createElement("path",{d:"M11.5 4.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0z",fill:"currentColor"}),Jt=t.createElement("path",{d:"M8 8c-.708 0-1.367-.21-1.918-.572A4.483 4.483 0 018 7c.686 0 1.336.154 1.918.428C9.368 7.79 8.708 8 8 8zM4.591 8.562c.308-.357.838-.339 1.252-.112C6.483 8.8 7.218 9 8 9s1.517-.2 2.158-.55c.413-.227.943-.245 1.251.112A4.482 4.482 0 0112.5 11.5V14h-9v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"});function Yt(){return(Yt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var er=t.createElement("path",{d:"M4.808 8.923a2.962 2.962 0 100-5.923 2.962 2.962 0 000 5.923zM2.982 9.304c-.35-.192-.798-.207-1.059.095A3.793 3.793 0 001 11.885V14h7.615v-2.115c0-.95-.347-1.819-.923-2.486-.26-.302-.708-.287-1.059-.095a3.79 3.79 0 01-1.825.465 3.79 3.79 0 01-1.826-.465zM9.615 11.885V13H15v-1.906c0-.734-.274-1.405-.727-1.92-.206-.234-.559-.222-.835-.074-.427.23-.917.36-1.438.36-.521 0-1.011-.13-1.438-.36-.276-.148-.63-.16-.835.073-.21.239-.38.51-.504.806.252.585.392 1.23.392 1.906zM14.333 6.288c0 1.264-1.044 2.289-2.333 2.289-1.289 0-2.333-1.025-2.333-2.289C9.667 5.025 10.71 4 12 4c1.289 0 2.333 1.025 2.333 2.288z",fill:"currentColor"});function tr(){return(tr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var rr=t.createElement("path",{d:"M10 4.5A3.497 3.497 0 016.5 8a3.484 3.484 0 01-1.918-.572A3.5 3.5 0 1110 4.5zM4.343 8.45c-.414-.227-.944-.245-1.252.112A4.482 4.482 0 002 11.5V14h6v-2.5c0-.445.194-.845.502-1.12.033-.82.393-1.554.954-2.076-.259-.051-.55.01-.799.146A4.48 4.48 0 016.5 9a4.48 4.48 0 01-2.157-.55z",fill:"currentColor"}),nr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 10.5v.5a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5v-.5a2 2 0 10-4 0zm2-1a1 1 0 00-1 1v.5h2v-.5a1 1 0 00-1-1z",fill:"currentColor"});function ar(){return(ar=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var lr=t.createElement("path",{d:"M13.779 6.704a1.5 1.5 0 010 2.592l-7.523 4.388A1.5 1.5 0 014 12.388V3.612a1.5 1.5 0 012.256-1.296l7.523 4.388z",fill:"currentColor"});function or(){return(or=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ir=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 2a1 1 0 00-1 1v3.5H3a1 1 0 00-1 1v1a1 1 0 001 1h3.5V13a1 1 0 001 1h1a1 1 0 001-1V9.5H13a1 1 0 001-1v-1a1 1 0 00-1-1H9.5V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function cr(){return(cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var hr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 5a1 1 0 012 0v2h2a1 1 0 110 2H9v2a1 1 0 11-2 0V9H5a1 1 0 110-2h2V5z",fill:"currentColor"});function vr(){return(vr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ur=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM6.932 5.612C7.054 5.298 7.425 5 7.942 5 8.615 5 9 5.478 9 5.875c0 .162-.057.33-.172.476a.985.985 0 01-.242.216l-.016.01a1.141 1.141 0 01-.098.054c-.59.286-1.53.967-1.53 2.119V9a1 1 0 002 0c0-.035.011-.12.138-.27a2.66 2.66 0 01.587-.48 3 3 0 00.726-.656A2.742 2.742 0 0011 5.875C11 4.201 9.54 3 7.941 3c-1.275 0-2.43.745-2.873 1.888a1 1 0 101.864.724zM8 13a1 1 0 100-2 1 1 0 000 2z",fill:"currentColor"});function fr(){return(fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pr=t.createElement("path",{d:"M4.018 9.402c-.05.328-.313.598-.645.598h-.8c-.331 0-.603-.27-.57-.6a5.996 5.996 0 012.543-4.325A5.997 5.997 0 017.974 4h.028c2.699 0 4.95 1.718 5.467 4h1.414c.541 0 .792.672.383 1.026l-2.482 2.15a.585.585 0 01-.765 0l-2.482-2.15A.584.584 0 019.92 8h1.446c-.468-1.085-1.68-2-3.364-2a3.98 3.98 0 00-2.543.89 3.996 3.996 0 00-1.441 2.512z",fill:"currentColor"});function sr(){return(sr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var wr=t.createElement("path",{d:"M8.033 2c2.699 0 4.95 1.718 5.467 4h1.414c.542 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15A.584.584 0 019.951 6h1.447c-.469-1.085-1.68-2-3.365-2-1.026 0-1.877.34-2.491.85-.243.202-.618.203-.817-.043l-.61-.754a.468.468 0 01.044-.651C5.163 2.534 6.53 2 8.033 2zM3.95 6.843a.584.584 0 00-.765 0L.703 8.992a.584.584 0 00.383 1.026h1.418C3.03 12.291 5.275 14 7.967 14c1.505 0 2.87-.534 3.874-1.402a.468.468 0 00.044-.65l-.61-.755c-.2-.246-.574-.245-.817-.043-.614.51-1.465.85-2.49.85-1.676 0-2.883-.904-3.358-1.982H6.05a.584.584 0 00.383-1.026L3.95 6.842z",fill:"currentColor"});function gr(){return(gr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var dr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.39 7.713A3.488 3.488 0 018 8c-.494 0-.964-.102-1.39-.287L5.264 9.729a2.5 2.5 0 11-1.08-.634L5.57 7.02a3.5 3.5 0 114.86 0l1.385 2.076A2.501 2.501 0 0115 11.5a2.5 2.5 0 11-4.265-1.77L9.391 7.712zM9.75 4.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function mr(){return(mr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var yr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3.6c0-.56 0-.84.109-1.054a1 1 0 01.437-.437C2.76 2 3.04 2 3.6 2h7.737c.245 0 .367 0 .482.028a1 1 0 01.29.12c.1.061.187.148.36.32l1.062 1.063c.173.173.26.26.322.36.055.09.095.188.12.29.027.115.027.237.027.482V12.4c0 .56 0 .84-.109 1.054a1 1 0 01-.437.437c-.2.102-.46.109-.954.109V9.284c0-.126 0-.25-.008-.353a1.01 1.01 0 00-.101-.385 1 1 0 00-.437-.437 1.01 1.01 0 00-.385-.1C11.465 8 11.342 8 11.216 8H4.784c-.126 0-.249 0-.353.008a1.01 1.01 0 00-.385.101 1 1 0 00-.437.437 1.01 1.01 0 00-.1.385c-.009.104-.009.227-.009.353V14c-.494 0-.753-.007-.954-.109a1 1 0 01-.437-.437C2 13.24 2 12.96 2 12.4V3.6zm2-.1a.5.5 0 00-.5.5v2a.5.5 0 00.5.5h5a.5.5 0 00.5-.5V4a.5.5 0 00-.5-.5H4z",fill:"currentColor"}),Or=t.createElement("path",{d:"M11.5 9.3V14h-7V9.3c0-.148 0-.23.005-.288v-.006h.007C4.571 9 4.652 9 4.8 9h6.4c.148 0 .23 0 .288.005h.006v.007c.006.059.006.14.006.288z",fill:"currentColor"});function br(){return(br=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var zr=t.createElement("path",{d:"M2.132 10.849a5.5 5.5 0 118.4-6.571 4 4 0 014.398 6.444 1 1 0 01-.15.192l-1.77 1.898a1.995 1.995 0 01-1.51.688H7.792a2.5 2.5 0 110-2H11.5l1.166-1.25H8.5a3.75 3.75 0 00-6.368.599z",fill:"currentColor"});function Er(){return(Er=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var jr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 2.75a1.75 1.75 0 01-2.123 1.71l-.619.866a3.497 3.497 0 011.186 2.049h1.17a1.75 1.75 0 110 1.25h-1.17a3.497 3.497 0 01-1.186 2.05l.619.865a1.75 1.75 0 11-1.046.686l-.662-.926a3.495 3.495 0 01-2.331.002l-.664.93a1.75 1.75 0 11-1.043-.69l.616-.863a3.497 3.497 0 01-1.191-2.054h-1.17a1.75 1.75 0 110-1.25h1.17c.147-.819.58-1.54 1.191-2.054l-.616-.863a1.75 1.75 0 111.043-.69l.664.93A3.494 3.494 0 018 4.5c.41 0 .803.07 1.17.2l.66-.926A1.75 1.75 0 1113 2.75zM9.75 8a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function xr(){return(xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Mr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.207 1.067a.75.75 0 00-.89.247l-.374.506a6.214 6.214 0 00-1.894.002l-.375-.506a.75.75 0 00-.89-.246l-1.126.467a.75.75 0 00-.454.804l.093.623c-.505.37-.958.82-1.338 1.34l-.623-.093a.75.75 0 00-.803.455l-.466 1.127a.75.75 0 00.247.89l.506.374a6.214 6.214 0 00.002 1.893l-.506.376a.75.75 0 00-.246.89l.467 1.126a.75.75 0 00.804.454l.623-.093c.37.505.82.958 1.34 1.338l-.093.623a.75.75 0 00.455.803l1.127.466a.75.75 0 00.89-.247l.374-.506a6.218 6.218 0 001.894-.002l.375.506a.75.75 0 00.89.246l1.126-.467a.75.75 0 00.454-.804l-.093-.623c.505-.37.958-.82 1.338-1.34l.623.093a.75.75 0 00.803-.455l.466-1.127a.75.75 0 00-.247-.89l-.506-.374a6.218 6.218 0 00-.002-1.894l.506-.375a.75.75 0 00.246-.89l-.467-1.126a.75.75 0 00-.804-.454l-.623.093a6.214 6.214 0 00-1.34-1.338l.093-.623a.75.75 0 00-.455-.803l-1.127-.466zm.334 7.984A2.75 2.75 0 115.46 6.949a2.75 2.75 0 015.082 2.102z",fill:"currentColor"});function Cr(){return(Cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Vr=t.createElement("path",{d:"M1.8 5.2l3.4 2.2-3.79 2.526a.5.5 0 00-.142.688l.557.86a.5.5 0 00.697.145L7.5 8.3c.3-.2.5-.5.5-.8 0-.3-.2-.6-.4-.8L2.522 3.284a.5.5 0 00-.699.143l-.547.847a.5.5 0 00.155.695L1.8 5.2zM6.7 13a.5.5 0 00.5.5h7.7a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H7.2a.5.5 0 00-.5.5v1z",fill:"currentColor"});function Hr(){return(Hr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Pr=t.createElement("path",{d:"M4.45 1.143a.584.584 0 00-.765 0L1.203 3.292a.584.584 0 00.383 1.026h1.312v9.352a1.169 1.169 0 102.338 0V4.318H6.55a.584.584 0 00.383-1.026L4.45 1.142zM8 5a1 1 0 000 2h6a1 1 0 100-2H8zM7 9a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 11a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Rr(){return(Rr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Br=t.createElement("path",{d:"M4.45 14.696a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.025h1.312V2.168a1.169 1.169 0 112.338 0v9.351H6.55c.541 0 .792.673.383 1.027L4.45 14.696zM8 3a1 1 0 000 2h6a1 1 0 100-2H8zM7 7a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 9a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Lr(){return(Lr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ar=t.createElement("path",{d:"M0 0h16v16H0V0zm14 4V2H2v2h12zm0 10V5H2v9h12zM8 6v7H6V6h2zm5 0v4H9V6h4zM5 8v5H3V8h2zm8 3v2H9v-2h4z",fill:"currentColor",fillRule:"evenodd"});function Sr(){return(Sr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var kr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 7a3 3 0 016 0v2.5c0 1.51-.957 2.798-2.298 3.288a1 1 0 10.265.967 4.512 4.512 0 002.787-2.785c.08.02.161.03.246.03h.5a2.5 2.5 0 00.406-4.967 5.002 5.002 0 00-9.813 0A2.5 2.5 0 003.5 11H4a1 1 0 001-1V7z",fill:"currentColor"});function Dr(){return(Dr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Tr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 3.25C1 2.56 1.56 2 2.25 2h11.5c.69 0 1.25.56 1.25 1.25v9.5c0 .69-.56 1.25-1.25 1.25H2.25C1.56 14 1 13.44 1 12.75v-9.5zm2 4.12V4h4.37v3.37H3zm0 1.25V12h4.37V8.62H3zM8.62 12H13V8.62H8.62V12zM13 7.37V4H8.62v3.37H13z",fill:"currentColor"});function Ur(){return(Ur=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ir=t.createElement("path",{d:"M7.023 1.518c.513.024.957.363 1.12.853L9.38 6.108l1.56-2.092a1.24 1.24 0 011.872-.134l1.897 1.91c.388.39.388 1.023 0 1.413l-.377.354a.99.99 0 01-1.405 0l-.86-.89-2.122 2.847a1.239 1.239 0 01-2.172-.355L6.798 6.22 6.11 7.774c-.2.451-.644.742-1.135.742H1.994a.997.997 0 01-.994-1v-.5c0-.552.445-1 .994-1h2.174l1.66-3.758a1.242 1.242 0 011.195-.74zM14 12a1 1 0 011 1v.5a1 1 0 01-1 1H2a1 1 0 01-1-1V13a1 1 0 011-1h12z",fill:"currentColor"});function Nr(){return(Nr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Wr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 011-1h4a1 1 0 011 1h2a1 1 0 011 1v1H2V3a1 1 0 011-1h2zm9 3H2l1.678 8.392A2 2 0 005.64 15h4.72a2 2 0 001.962-1.608L14 5z",fill:"currentColor"});function Fr(){return(Fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var _r=t.createElement("path",{d:"M11.981 9.402c.05.328.313.598.645.598h.8c.331 0 .603-.27.57-.6a5.996 5.996 0 00-2.543-4.325A5.997 5.997 0 008.026 4h-.029C5.298 4 3.047 5.718 2.53 8H1.116a.584.584 0 00-.383 1.026l2.482 2.15c.22.19.545.19.765 0l2.482-2.15A.584.584 0 006.079 8H4.632c.47-1.085 1.68-2 3.365-2a3.98 3.98 0 012.543.89 3.996 3.996 0 011.441 2.512z",fill:"currentColor"});function Gr(){return(Gr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var qr=t.createElement("path",{d:"M8.5 4.613c0-.383.191-.74.51-.953a6.87 6.87 0 012.145-.949l2.406-.601a.353.353 0 01.439.342v7.88c0 .238 0 .357-.043.453a.5.5 0 01-.176.211c-.087.06-.204.081-.438.123l-3.9.71c-.324.058-.486.088-.612.042a.5.5 0 01-.264-.22c-.067-.116-.067-.28-.067-.61V4.613zM2 2.452c0-.23.216-.398.439-.342l2.407.601a6.87 6.87 0 012.144.95c.319.211.51.569.51.952v6.428c0 .33 0 .494-.067.61a.5.5 0 01-.264.22c-.126.046-.288.016-.612-.043l-3.9-.709c-.234-.042-.35-.063-.438-.123a.5.5 0 01-.176-.21C2 10.688 2 10.57 2 10.331v-7.88zM2.008 12.41a.5.5 0 01.581-.402l5.143.935c.177.032.359.032.536 0l5.143-.935a.5.5 0 01.178.984l-4.134.752c-.163.434-.753.756-1.455.756-.702 0-1.292-.322-1.455-.756l-4.134-.752a.5.5 0 01-.403-.581z",fill:"currentColor"});function Xr(){return(Xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var $r=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.157 4.221A2 2 0 0110 5v2H4a1 1 0 00-1 1v6a1 1 0 001 1h8a1 1 0 001-1V8a1 1 0 00-1-1V5a4 4 0 00-7.822-1.182C3.982 4.45 4.538 5 5.2 5c.442 0 .785-.372.957-.779zm2.43 6.589A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Kr(){return(Kr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Qr=t.createElement("path",{d:"M3.685 1.143c.22-.19.545-.19.765 0l2.482 2.149a.584.584 0 01-.383 1.026H5.236v7.364H6.55c.541 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.026h1.312V4.318H1.586a.584.584 0 01-.383-1.026l2.482-2.15zM8 8a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1zM9 4a1 1 0 000 2h5a1 1 0 100-2H9zM8 11a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1z",fill:"currentColor"});function Zr(){return(Zr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Jr=t.createElement("path",{d:"M7.527 1.21a.638.638 0 01.948 0l3.327 3.563c.422.452.123 1.227-.475 1.227H4.673c-.599 0-.898-.775-.476-1.227l3.33-3.562zm3.8 8.79c.598 0 .897.775.475 1.228l-3.327 3.56a.638.638 0 01-.948 0l-3.33-3.56C3.775 10.775 4.074 10 4.673 10h6.654z",fill:"currentColor",fillRule:"evenodd"});function Yr(){return(Yr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var en=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.297 11v.938a4 4 0 10-.764-7.66A5.501 5.501 0 000 6.5a5.5 5.5 0 005.797 5.492V11h-.403c-1.395 0-2.08-1.7-1.075-2.667L7.472 5.3a1.55 1.55 0 012.15 0l3.152 3.034C13.78 9.301 13.094 11 11.7 11h-.402zM8.339 6.2a.3.3 0 01.416 0l3.152 3.034a.3.3 0 01-.208.516h-1.652v3.75a1.5 1.5 0 01-3 0V9.75H5.394a.3.3 0 01-.208-.516L8.339 6.2z",fill:"currentColor"});function tn(){return(tn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var rn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 2.75a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zm0 5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM7.75 14.5a1.75 1.75 0 100-3.5 1.75 1.75 0 000 3.5z",fill:"currentColor"});function nn(){return(nn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var an=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 2.008c3.934 0 6.473 3.129 7.455 4.583l.043.064C15.713 6.97 16 7.391 16 8s-.287 1.03-.502 1.345l-.043.064c-.982 1.454-3.521 4.583-7.455 4.583S1.527 10.863.545 9.41l-.043-.064C.287 9.03 0 8.609 0 8s.287-1.03.502-1.345l.043-.064C1.527 5.137 4.066 2.008 8 2.008zM9.13 4.13A5.147 5.147 0 008 4.005C5.75 4.005 3.927 5.794 3.927 8c0 2.206 1.824 3.995 4.073 3.995 2.25 0 4.073-1.789 4.073-3.995 0-2.206-1.824-3.995-4.073-3.995.378 0 .756.045 1.13.126zM8 10.996c1.687 0 3.055-1.341 3.055-2.996S9.687 5.004 8 5.004 4.945 6.345 4.945 8 6.313 10.996 8 10.996z",fill:"currentColor"});function ln(){return(ln=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var on=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.601 1.266a1.03 1.03 0 00-1.433.049L1.704 13.486a.987.987 0 00.062 1.407 1.03 1.03 0 001.433-.049l1.793-1.904A7.348 7.348 0 008 13.587c3.934 0 6.473-3.133 7.455-4.59l.043-.063c.215-.316.502-.737.502-1.347s-.287-1.03-.502-1.346l-.043-.065a12.85 12.85 0 00-1.949-2.275l1.157-1.228a.987.987 0 00-.062-1.407zm-2.93 4.585l-.764.81c.096.292.148.603.148.926 0 1.657-1.368 3-3.055 3-.246 0-.485-.028-.714-.082l-.763.81c.458.176.956.272 1.477.272 2.25 0 4.073-1.79 4.073-4 0-.622-.145-1.211-.403-1.736zM8 1.587c.919 0 1.762.171 2.526.452L8.98 3.68A5.13 5.13 0 008 3.587c-2.25 0-4.073 1.79-4.073 4 0 .435.07.853.201 1.245l-1.985 2.107A13.06 13.06 0 01.545 8.998l-.043-.064C.287 8.618 0 8.197 0 7.587s.287-1.03.502-1.346l.043-.065C1.527 4.72 4.066 1.587 8 1.587zm0 2c.327 0 .654.034.978.095l-.016.017A4.155 4.155 0 008 3.587zm0 1c.041 0 .083 0 .124.002L4.966 7.942a2.978 2.978 0 01-.02-.355c0-1.657 1.367-3 3.054-3z",fill:"currentColor"});function cn(){return(cn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var hn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.864 2.514a.983.983 0 00-1.728 0L1.122 13.539A.987.987 0 001.986 15h12.028a.987.987 0 00.864-1.461L8.864 2.514zM7 6a1 1 0 012 0v4a1 1 0 11-2 0V6zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function vn(){return(vn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var un=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.203 3.404a1 1 0 00-1.414 0L8.314 5.879 5.839 3.404a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L6.192 8l-2.474 2.475a1 1 0 000 1.414l.707.707a1 1 0 001.414 0l2.475-2.475 2.475 2.475a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L10.435 8l2.475-2.475a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function fn(){return(fn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm1.414-9.828a1 1 0 111.414 1.414L9.414 8l1.414 1.414a1 1 0 11-1.414 1.414L8 9.414l-1.414 1.414a1 1 0 11-1.414-1.414L6.586 8 5.172 6.586a1 1 0 011.414-1.414L8 6.586l1.414-1.414z",fill:"currentColor"});var sn={ActivityFeed:function(e){return t.createElement("svg",m({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),y)},AddFile:function(e){return t.createElement("svg",O({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),b)},Apps:function(e){return t.createElement("svg",z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),E)},Array:function(e){return t.createElement("svg",j({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),x)},ArrowDown:function(e){return t.createElement("svg",M({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),C)},ArrowLeft:function(e){return t.createElement("svg",V({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),H)},ArrowRight:function(e){return t.createElement("svg",P({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),R)},ArrowUp:function(e){return t.createElement("svg",B({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),L)},Beaker:function(e){return t.createElement("svg",A({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),S)},Bell:function(e){return t.createElement("svg",k({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),D)},Building:function(e){return t.createElement("svg",T({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),U)},Bulb:function(e){return t.createElement("svg",I({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),N,W)},Calendar:function(e){return t.createElement("svg",F({width:18,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),_)},CaretDown:function(e){return t.createElement("svg",G({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),q)},CaretLeft:function(e){return t.createElement("svg",X({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),$)},CaretRight:function(e){return t.createElement("svg",K({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Q)},CaretUp:function(e){return t.createElement("svg",Z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),J)},Charts:function(e){return t.createElement("svg",Y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ee)},Checkmark:function(e){return t.createElement("svg",te({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),re)},CheckmarkWithCircle:function(e){return t.createElement("svg",ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ae)},ChevronDown:function(e){return t.createElement("svg",le({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),oe)},ChevronLeft:function(e){return t.createElement("svg",ie({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ce)},ChevronRight:function(e){return t.createElement("svg",he({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ve)},ChevronUp:function(e){return t.createElement("svg",ue({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),fe)},Clock:function(e){return t.createElement("svg",pe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),se)},ClockWithArrow:function(e){return t.createElement("svg",we({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ge,de)},Clone:function(e){return t.createElement("svg",me({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ye,Oe)},Cloud:function(e){return t.createElement("svg",be({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ze)},Code:function(e){return t.createElement("svg",Ee({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),je)},Connect:function(e){return t.createElement("svg",xe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Me)},Copy:function(e){return t.createElement("svg",Ce({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ve)},CreditCard:function(e){return t.createElement("svg",He({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Pe)},CurlyBraces:function(e){return t.createElement("svg",Re({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Be)},Database:function(e){return t.createElement("svg",Le({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ae,Se,ke)},Diagram:function(e){return t.createElement("svg",De({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Te)},Disconnect:function(e){return t.createElement("svg",Ue({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ie)},Download:function(e){return t.createElement("svg",Ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),We)},Edit:function(e){return t.createElement("svg",Fe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),_e,Ge)},Ellipsis:function(e){return t.createElement("svg",qe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Xe)},Export:function(e){return t.createElement("svg",$e({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ke,Qe)},Favorite:function(e){return t.createElement("svg",Ze({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Je)},File:function(e){return t.createElement("svg",Ye({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),et,tt)},Filter:function(e){return t.createElement("svg",rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),nt)},FullScreenEnter:function(e){return t.createElement("svg",at({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),lt)},FullScreenExit:function(e){return t.createElement("svg",ot({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),it)},Folder:function(e){return t.createElement("svg",ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ht)},GlobeAmericas:function(e){return t.createElement("svg",vt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),ut)},GovernmentBuilding:function(e){return t.createElement("svg",ft({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pt,st)},Home:function(e){return t.createElement("svg",wt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),gt,dt)},ImportantWithCircle:function(e){return t.createElement("svg",mt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),yt)},InfoWithCircle:function(e){return t.createElement("svg",Ot({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),bt)},InviteUser:function(e){return t.createElement("svg",zt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Et,jt)},Key:function(e){return t.createElement("svg",xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Mt)},Laptop:function(e){return t.createElement("svg",Ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Vt,Ht)},Lock:function(e){return t.createElement("svg",Pt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Rt)},MagnifyingGlass:function(e){return t.createElement("svg",Bt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Lt)},Megaphone:function(e){return t.createElement("svg",At({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),St)},Menu:function(e){return t.createElement("svg",kt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Dt)},Minus:function(e){return t.createElement("svg",Tt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ut)},NotAllowed:function(e){return t.createElement("svg",It({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Nt)},Note:function(e){return t.createElement("svg",Wt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ft,_t)},OpenNewTab:function(e){return t.createElement("svg",Gt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),qt,Xt)},Pause:function(e){return t.createElement("svg",$t({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Kt)},Person:function(e){return t.createElement("svg",Qt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Zt,Jt)},PersonGroup:function(e){return t.createElement("svg",Yt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),er)},PersonWithLock:function(e){return t.createElement("svg",tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),rr,nr)},Play:function(e){return t.createElement("svg",ar({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),lr)},Plus:function(e){return t.createElement("svg",or({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ir)},PlusWithCircle:function(e){return t.createElement("svg",cr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),hr)},QuestionMarkWithCircle:function(e){return t.createElement("svg",vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ur)},Redo:function(e){return t.createElement("svg",fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pr)},Refresh:function(e){return t.createElement("svg",sr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),wr)},ReplicaSet:function(e){return t.createElement("svg",gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),dr)},Save:function(e){return t.createElement("svg",mr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),yr,Or)},Serverless:function(e){return t.createElement("svg",br({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),zr)},ShardedCluster:function(e){return t.createElement("svg",Er({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),jr)},Settings:function(e){return t.createElement("svg",xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Mr)},Shell:function(e){return t.createElement("svg",Cr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),Vr)},SortAscending:function(e){return t.createElement("svg",Hr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Pr)},SortDescending:function(e){return t.createElement("svg",Rr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Br)},Stitch:function(e){return t.createElement("svg",Lr({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ar)},Support:function(e){return t.createElement("svg",Sr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),kr)},Table:function(e){return t.createElement("svg",Dr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Tr)},TimeSeries:function(e){return t.createElement("svg",Ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ir)},Trash:function(e){return t.createElement("svg",Nr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Wr)},Undo:function(e){return t.createElement("svg",Fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),_r)},University:function(e){return t.createElement("svg",Gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),qr)},Unlock:function(e){return t.createElement("svg",Xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),$r)},Unsorted:function(e){return t.createElement("svg",Kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Qr)},UpDownCarets:function(e){return t.createElement("svg",Zr({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Jr)},Upload:function(e){return t.createElement("svg",Yr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),en)},VerticalEllipsis:function(e){return t.createElement("svg",tn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),rn)},Visibility:function(e){return t.createElement("svg",nn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),an)},VisibilityOff:function(e){return t.createElement("svg",ln({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),on)},Warning:function(e){return t.createElement("svg",cn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),hn)},X:function(e){return t.createElement("svg",vn({width:17,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),un)},XWithCircle:function(e){return t.createElement("svg",fn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pn)}},wn=Object.keys(sn).reduce((function(e,t){return e[t]=d(t,sn[t]),e}),{});var gn=w(wn);e.Size=u,e.createIconComponent=w,e.default=gn,e.glyphs=wn,e.isComponentGlyph=function(e){return null!=e&&"object"===i(e)&&"type"in e&&!0===e.type.isGlyph},Object.defineProperty(e,"__esModule",{value:!0})}));
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("react"),require("prop-types"),require("@emotion/react"),require("@leafygreen-ui/emotion")):"function"==typeof define&&define.amd?define(["exports","react","prop-types","@emotion/react","@leafygreen-ui/emotion"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@leafygreen-ui/icon"]={},e.React,e.PropTypes,e.react,e["@leafygreen-ui/emotion"])}(this,(function(e,t,r,n,a){"use strict";function l(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=l(r);function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function h(){return(h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function v(e,t){if(null==e)return{};var r,n,a=function(e,t){if(null==e)return{};var r,n,a={},l=Object.keys(e);for(n=0;n<l.length;n++)r=l[n],t.indexOf(r)>=0||(a[r]=e[r]);return a}(e,t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);for(n=0;n<l.length;n++)r=l[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r])}return a}var u={Small:"small",Default:"default",Large:"large",XLarge:"xlarge"},f={small:14,default:16,large:20,xlarge:24};var p,s=["glyph"];function w(e){var t=function(t){var r=t.glyph,a=v(t,s),l=e[r];return n.jsx(l,a)};return t.displayName="Icon",t.propTypes={glyph:o.default.oneOf(Object.keys(e)).isRequired,size:o.default.oneOfType([o.default.oneOf(Object.values(u)),o.default.number])},t}var g=["className","size","fill","title","aria-labelledby","aria-label","role"];function d(e,t){function r(r){var l,o,i,s=r.className,w=r.size,d=void 0===w?u.Default:w,m=r.fill,y=r.title,O=r["aria-labelledby"],b=r["aria-label"],z=r.role,E=void 0===z?"img":z,j=v(r,g),x=a.css(p||(o=["\n color: ",";\n "],i||(i=o.slice(0)),p=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(i)}}))),m),M="number"==typeof d?d:f[d];return"img"!==E&&"presentation"!==E&&console.warn("Please provide a valid role to this component. Valid options are 'img' and 'presentation'. If you'd like the Icon to be accessible to screen readers please use 'img', otherwise set the role to 'presentation'."),n.jsx(t,h({className:a.cx(c({},x,null!=m),s),height:M,width:M,role:E},function(e,t,r){var n,a,l=r["aria-label"],o=r["aria-labelledby"],i=r.title;switch(e){case"img":return l||o||i?(c(n={},"aria-labelledby",o),c(n,"aria-label",l),c(n,"title",i),n):{"aria-label":(a=t,"".concat(a.replace(/([a-z])([A-Z])/g,"$1 $2")," Icon"))};case"presentation":return{"aria-hidden":!0,alt:""}}}(E,e,(c(l={title:y},"aria-label",b),c(l,"aria-labelledby",O),l)),j))}return r.displayName=e,r.isGlyph=!0,r.propTypes={fill:o.default.string,size:o.default.oneOfType([o.default.oneOf(Object.values(u)),o.default.number]),className:o.default.string},r}function m(){return(m=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var y=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 13V7h4.5A1.5 1.5 0 007 5.5V1h2a2 2 0 012 2v4.515a2.5 2.5 0 00-2.612 1.602l-1.06 2.808A2.501 2.501 0 005.59 15H3a2 2 0 01-2-2zM4.914 1h.92v3.833a1 1 0 01-1 1H1v-.919a1 1 0 01.293-.707L2.5 3l1.707-1.707A1 1 0 014.914 1zM10.8 9.003a1 1 0 01.904.784l.61 2.792.508-.714a1 1 0 01.814-.42H15a1 1 0 010 2h-.848l-1.519 2.135a1 1 0 01-1.792-.367l-.371-1.701-.444 1.175a1 1 0 01-.935.646H8a1 1 0 110-2h.4l1.392-3.686a1 1 0 011.008-.644z",fill:"currentColor"});function O(){return(O=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var b=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 7v6a2 2 0 002 2h5.968a2.25 2.25 0 01.794-4.238A2.251 2.251 0 0111 8.984V3a2 2 0 00-2-2H7v4.5A1.5 1.5 0 015.5 7H1zm8 6a1 1 0 001 1h1v1a1 1 0 102 0v-1h1a1 1 0 100-2h-1v-1a1 1 0 10-2 0v1h-1a1 1 0 00-1 1zM5.833 1h-.919a1 1 0 00-.707.293L2.5 3 1.293 4.207A1 1 0 001 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function z(){return(z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var E=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 3H3v4h4V3zm0 6H3v4h4V9zm2-6h4v4H9V3zm4 6H9v4h4V9z",fill:"currentColor"});function j(){return(j=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var x=t.createElement("path",{d:"M2.5 1a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H4V3h2.5a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM13.5 1a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-4a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H12V3H9.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5h4z",fill:"currentColor"});function M(){return(M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var C=t.createElement("path",{d:"M9.168 3v6.944l1.535-1.535a1 1 0 011.414 0l.239.24a1 1 0 010 1.414l-3.383 3.382c-.008.01-.017.018-.026.027l-.239.24a1 1 0 01-1.414 0L3.643 10.06a1 1 0 010-1.414l.239-.239a1 1 0 011.414 0L6.83 9.941V3a1 1 0 011-1h.338a1 1 0 011 1z",fill:"currentColor"});function V(){return(V=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var H=t.createElement("path",{d:"M13 6.832H6.056L7.59 5.297a1 1 0 000-1.414l-.24-.239a1 1 0 00-1.414 0L2.555 7.027c-.01.008-.018.017-.027.026l-.24.239a1 1 0 000 1.414l3.652 3.651a1 1 0 001.414 0l.239-.239a1 1 0 000-1.414L6.059 9.17H13a1 1 0 001-1v-.338a1 1 0 00-1-1z",fill:"currentColor"});function P(){return(P=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var R=t.createElement("path",{d:"M3 6.832h6.944L8.41 5.297a1 1 0 010-1.414l.24-.239a1 1 0 011.414 0l3.382 3.383c.01.008.018.017.027.026l.24.239a1 1 0 010 1.414l-3.652 3.651a1 1 0 01-1.414 0l-.239-.239a1 1 0 010-1.414L9.941 9.17H3a1 1 0 01-1-1v-.338a1 1 0 011-1z",fill:"currentColor"});function L(){return(L=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var B=t.createElement("path",{d:"M9.168 13V6.056l1.535 1.535a1 1 0 001.414 0l.239-.24a1 1 0 000-1.414L8.973 2.555a1.023 1.023 0 00-.026-.027l-.239-.24a1 1 0 00-1.414 0L3.643 5.94a1 1 0 000 1.414l.239.239a1 1 0 001.414 0L6.83 6.059V13a1 1 0 001 1h.338a1 1 0 001-1z",fill:"currentColor"});function A(){return(A=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var S=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.953 1.8c0-.28 0-.42.054-.527a.5.5 0 01.219-.218C6.333 1 6.473 1 6.753 1h2.4c.28 0 .42 0 .527.054a.5.5 0 01.218.219c.055.107.055.247.055.527v.4c0 .28 0 .42-.055.527a.5.5 0 01-.218.219C9.573 3 9.433 3 9.153 3h-2.4c-.28 0-.42 0-.527-.054a.5.5 0 01-.219-.219c-.054-.107-.054-.247-.054-.527v-.4zm.056 2.47c-.056.108-.056.25-.056.535V6l-3.007 5.412c-.663 1.193-.994 1.79-.932 2.277a1.5 1.5 0 00.6 1.02C3.01 15 3.693 15 5.057 15h5.791c1.365 0 2.047 0 2.444-.291a1.5 1.5 0 00.6-1.02c.062-.488-.27-1.084-.932-2.277L9.953 6V4.805c0-.285 0-.427-.056-.535a.5.5 0 00-.214-.214C9.575 4 9.433 4 9.148 4h-2.39c-.285 0-.427 0-.536.056a.5.5 0 00-.213.214zM9.333 9l-3.03.5-1.287 2.31c-.218.392-.327.588-.309.748a.5.5 0 00.205.348c.13.094.355.094.802.094h4.48c.447 0 .67 0 .801-.094a.5.5 0 00.205-.348c.019-.16-.09-.355-.307-.746L9.333 9z",fill:"currentColor"});function k(){return(k=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var _=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.625 6.138a4.656 4.656 0 00-3.268-3.925C9.228 1.52 8.67 1 8 1c-.67 0-1.228.52-1.357 1.213a4.656 4.656 0 00-3.268 3.925l-.452 3.963h.026a.95.95 0 000 1.899h10.102a.95.95 0 000-1.899h.026l-.452-3.963zM8 15a2 2 0 01-2-2h4a2 2 0 01-2 2z",fill:"currentColor"});function D(){return(D=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var T=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 2a1 1 0 011-1h5a1 1 0 011 1v13H6v-2H4v2H1v-4h4.5a.5.5 0 000-1H1V8h4.5a.5.5 0 000-1H1V5h4.5a.5.5 0 000-1H1V2zm8 9h4.5a.5.5 0 000-1H9V8h4.5a.5.5 0 000-1H9V5a1 1 0 011-1h5a1 1 0 011 1v10h-2v-2h-2v2H9v-4z",fill:"currentColor"});function G(){return(G=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var U=t.createElement("path",{d:"M12.331 8.5a5 5 0 10-8.612.086L5.408 11.5a1 1 0 00.866.499H6.5V6a1.5 1.5 0 113 0v6h.224a1 1 0 00.863-.496L12.34 8.5h-.009z",fill:"currentColor"}),I=t.createElement("path",{d:"M7.5 6v6h1V6a.5.5 0 00-1 0zM10 14v-1H6v1a1 1 0 001 1h2a1 1 0 001-1z",fill:"currentColor"});function N(){return(N=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var W=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 012 0v1a1 1 0 01-2 0V2zm5 1H8a2 2 0 11-4 0 2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V5a2 2 0 00-2-2 2 2 0 11-4 0zm1 0a1 1 0 102 0V2a1 1 0 10-2 0v1zm2 4h-3v3h3V7z",fill:"currentColor"});function F(){return(F=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var q=t.createElement("path",{d:"M8.679 10.796a.554.554 0 01-.858 0L4.64 6.976C4.32 6.594 4.582 6 5.069 6h6.362c.487 0 .748.594.43.976l-3.182 3.82z",fill:"currentColor"});function X(){return(X=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var $=t.createElement("path",{d:"M5.204 8.679a.553.553 0 010-.858l3.82-3.181c.382-.319.976-.058.976.429v6.362c0 .487-.594.748-.976.43l-3.82-3.182z",fill:"currentColor"});function K(){return(K=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Q=t.createElement("path",{d:"M10.796 7.321a.554.554 0 010 .858l-3.82 3.181c-.382.319-.976.058-.976-.429V4.57c0-.487.594-.748.976-.43l3.82 3.182z",fill:"currentColor"});function Z(){return(Z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var J=t.createElement("path",{d:"M7.321 5.204a.553.553 0 01.858 0l3.181 3.82c.319.382.058.976-.429.976H4.57c-.487 0-.748-.594-.43-.976l3.182-3.82z",fill:"currentColor"});function Y(){return(Y=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ee=t.createElement("path",{d:"M11.5 13a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1a1 1 0 00-1 1v10zM7.5 14a1 1 0 01-1-1V6a1 1 0 011-1h1a1 1 0 011 1v7a1 1 0 01-1 1h-1zM2.5 14a1 1 0 01-1-1V9a1 1 0 011-1h1a1 1 0 011 1v4a1 1 0 01-1 1h-1z",fill:"currentColor"});function te(){return(te=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var re=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.306 9.05l5.455-5.455a1 1 0 011.414 0l.707.707a1 1 0 010 1.414l-7.067 7.068a1 1 0 01-1.5-.098l-3.049-3.97a1 1 0 01.184-1.402l.595-.457a1.25 1.25 0 011.753.23L6.306 9.05z",fill:"currentColor"});function ne(){return(ne=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ae=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm2.448-10.104a.997.997 0 111.508 1.306l-4.572 5.28a1 1 0 01-1.64-.07l-1.82-2.868a1 1 0 111.69-1.07l1.1 1.734 3.734-4.312z",fill:"currentColor"});function le(){return(le=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var oe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.636 5.364a1 1 0 000 1.414l4.95 4.95.707.707a1 1 0 001.414 0l.707-.707 4.95-4.95a1 1 0 000-1.414l-.707-.707a1 1 0 00-1.414 0L8 8.899 3.757 4.657a1 1 0 00-1.414 0l-.707.707z",fill:"currentColor"});function ie(){return(ie=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ce=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.778 1.636a1 1 0 00-1.414 0l-4.95 4.95-.707.707a1 1 0 000 1.414l.707.707 4.95 4.95a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L7.243 8l4.242-4.243a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function he(){return(he=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ve=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.364 14.364a1 1 0 001.414 0l4.95-4.95.707-.707a1 1 0 000-1.414l-.707-.707-4.95-4.95a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L8.899 8l-4.242 4.243a1 1 0 000 1.414l.707.707z",fill:"currentColor"});function ue(){return(ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var fe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.364 10.778a1 1 0 000-1.414l-4.95-4.95-.707-.707a1 1 0 00-1.414 0l-.707.707-4.95 4.95a1 1 0 000 1.414l.707.707a1 1 0 001.414 0L8 7.243l4.243 4.242a1 1 0 001.414 0l.707-.707z",fill:"currentColor"});function pe(){return(pe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var se=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 14A6 6 0 108 2a6 6 0 000 12zm-.75-9.25a.75.75 0 011.5 0v3.16l1.744 1.526a.75.75 0 01-.988 1.128L7.511 8.818a.761.761 0 01-.19-.25.747.747 0 01-.071-.318v-3.5z",fill:"currentColor"});function we(){return(we=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ge=t.createElement("path",{d:"M13 8a5 5 0 01-7.304 4.438c-.348-.18-.787-.13-1.038.172l-.33.398c-.276.33-.22.828.152 1.044a7 7 0 10-1.452-10.98L1.97 2.146a.584.584 0 00-.964.521l.455 3.252c.04.287.285.51.576.511H5.32a.58.58 0 00.387-1.018l-1.168-1.02A5 5 0 0113 8z",fill:"currentColor"}),de=t.createElement("path",{d:"M7.25 5.25a.75.75 0 011.5 0v2.668l1.68 1.524a.75.75 0 11-.988 1.129L7.507 8.815a.758.758 0 01-.257-.565v-3z",fill:"currentColor"});function me(){return(me=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ye=t.createElement("path",{d:"M5.5 12a2 2 0 002 2h5a2 2 0 002-2V8a2 2 0 00-2-2h-5a2 2 0 00-2 2v4z",fill:"currentColor"}),Oe=t.createElement("path",{d:"M4.25 10H3.5a2 2 0 01-2-2V4a2 2 0 012-2h5a2 2 0 012 2v.75h-2V4h-5v4h.75v2z",fill:"currentColor"});function be(){return(be=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ze=t.createElement("path",{d:"M12.571 8.143c0 1.775-.899 3.34-2.267 4.264l-.014.01a5.12 5.12 0 01-2.861.869H2.857a2.857 2.857 0 01-.545-5.663 5.144 5.144 0 0110.26.52zM13.821 8.143a6.38 6.38 0 01-2.358 4.96 3.429 3.429 0 102.17-6.506c.123.494.188 1.013.188 1.546z",fill:"currentColor"});function Ee(){return(Ee=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var je=t.createElement("path",{d:"M6.11 13.262a.5.5 0 00.395.586l.737.143a.5.5 0 00.585-.396L9.926 2.738a.5.5 0 00-.396-.586l-.737-.143a.5.5 0 00-.585.396L6.109 13.262zM1.36 7.246L3.976 5.11a.507.507 0 01.704.063l.64.752a.483.483 0 01-.064.69L3.562 7.998 5.256 9.38c.212.173.24.482.064.69l-.64.752a.507.507 0 01-.704.062L1.36 8.75A.971.971 0 011 7.998c0-.29.132-.566.36-.752zM14.636 7.246L12.02 5.11a.507.507 0 00-.704.063l-.64.752a.483.483 0 00.064.69l1.694 1.382L10.74 9.38a.483.483 0 00-.064.69l.64.752a.507.507 0 00.704.062l2.616-2.134a.971.971 0 00.36-.752.971.971 0 00-.36-.752z",fill:"currentColor"});function xe(){return(xe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Me=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.867 8.898a4.048 4.048 0 00.687-4.8l1.275-1.275a.584.584 0 000-.826l-.826-.826a.584.584 0 00-.826 0l-1.29 1.29a4.048 4.048 0 00-4.734.722L5.277 5.058a.323.323 0 00-.041.035L3.182 7.148a4.048 4.048 0 00-.72 4.738l-1.29 1.29a.584.584 0 000 .827l.825.826a.584.584 0 00.826 0l1.278-1.278a4.048 4.048 0 004.795-.689l1.876-1.875a.324.324 0 00.041-.035l2.054-2.054zM6.561 6.776L4.685 8.65a1.916 1.916 0 000 2.707c.747.746 1.961.747 2.707 0l2.055-2.054a.321.321 0 01.04-.035l1.877-1.875a1.916 1.916 0 000-2.707 1.916 1.916 0 00-2.707 0L6.602 6.74a.32.32 0 01-.04.035z",fill:"currentColor"});function Ce(){return(Ce=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ve=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.714v4.572C1 11.233 1.768 12 2.714 12H5.75V7.11c0-.566.227-1.108.63-1.504l2.294-2.252c.1-.099.21-.186.326-.262v-.378C9 1.768 8.232 1 7.286 1H5.8v3.429c0 .71-.576 1.285-1.286 1.285H1zm8-.928L7.257 6.498A.857.857 0 007 7.11v.688h3.01a.857.857 0 00.857-.858V4h-.717a.857.857 0 00-.6.246l-.55.54zM4.867 1H4.15a.857.857 0 00-.601.246L1.257 3.498A.857.857 0 001 4.11v.688h3.01a.857.857 0 00.857-.858V1zM7 12V8.714H10.514c.71 0 1.286-.575 1.286-1.285V4h1.486C14.233 4 15 4.768 15 5.714v7.572c0 .947-.768 1.714-1.714 1.714H8.714A1.714 1.714 0 017 13.286V12z",fill:"currentColor"});function He(){return(He=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Pe=t.createElement("path",{d:"M3 3a2 2 0 00-2 2h14a2 2 0 00-2-2H3zM15 7H1v4a2 2 0 002 2h10a2 2 0 002-2V7z",fill:"currentColor"});function Re(){return(Re=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Le=t.createElement("path",{d:"M3 3.544a2.5 2.5 0 012.5-2.5h1a.5.5 0 01.5.5v1.105a.353.353 0 01-.353.353h-.79A.858.858 0 005 3.86v2.802a1.5 1.5 0 01-.816 1.335A1.5 1.5 0 015 9.332v2.803c0 .473.384.857.858.857h.789c.195 0 .353.158.353.353v1.105a.5.5 0 01-.5.5h-1a2.5 2.5 0 01-2.5-2.5v-1.956a1.5 1.5 0 00-1.5-1.5.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5 1.5 1.5 0 001.5-1.5v-1.95zM13 12.45a2.5 2.5 0 01-2.5 2.5h-1a.5.5 0 01-.5-.5v-1.105c0-.195.158-.353.353-.353h.79a.858.858 0 00.857-.858V9.332a1.5 1.5 0 01.816-1.335A1.5 1.5 0 0111 6.662V3.859a.858.858 0 00-.858-.857h-.789A.353.353 0 019 2.65V1.544a.5.5 0 01.5-.5h1a2.5 2.5 0 012.5 2.5V5.5A1.5 1.5 0 0014.5 7a.5.5 0 01.5.5v1a.5.5 0 01-.5.5 1.5 1.5 0 00-1.5 1.5v1.95z",fill:"currentColor"});function Be(){return(Be=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ae=t.createElement("path",{d:"M14 4.111c0 .098 0 .193-.002.286L14 4.5v.25c0 .328-.148.642-.472.95-.33.314-.818.598-1.424.834-1.211.473-2.772.716-4.104.716-1.332 0-2.893-.243-4.104-.716-.606-.236-1.094-.52-1.424-.834C2.148 5.392 2 5.078 2 4.75V4.5c0-.039 0-.077.003-.115C2 4.295 2 4.205 2 4.11 2 2 5.041 1 8 1s6 1 6 3.111z",fill:"currentColor"}),Se=t.createElement("path",{d:"M2 6.615V8.75c0 .328.148.642.472.95.33.315.818.598 1.424.834 1.211.473 2.772.716 4.104.716 1.332 0 2.893-.243 4.104-.716.606-.237 1.094-.52 1.424-.834.324-.308.472-.622.472-.95V6.615c-.428.347-.96.627-1.533.85-1.349.528-3.037.785-4.467.785-1.43 0-3.118-.257-4.467-.784-.573-.224-1.105-.504-1.533-.85z",fill:"currentColor"}),ke=t.createElement("path",{d:"M12.467 11.466c.573-.224 1.105-.504 1.533-.85v.884c0 .038 0 .076-.003.114.002.09.003.182.003.275C14 14 10.959 15 8 15s-6-1-6-3.111c0-.097 0-.193.002-.287A2.546 2.546 0 012 11.5v-.885c.428.347.96.627 1.533.85 1.349.528 3.037.785 4.467.785 1.43 0 3.118-.257 4.467-.784z",fill:"currentColor"});function _e(){return(_e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var De=t.createElement("path",{d:"M6 2.75A.75.75 0 016.75 2h2.5a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75H8.5v2h4.75a.75.75 0 01.75.75V10h.25a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H13V8H8.5v2H9a.75.75 0 01.75.75v1.5A.75.75 0 019 13H7a.75.75 0 01-.75-.75v-1.5A.75.75 0 017 10h.5V8H3v2h.75a.75.75 0 01.75.75v1.5a.75.75 0 01-.75.75h-2a.75.75 0 01-.75-.75v-1.5a.75.75 0 01.75-.75H2V7.75A.75.75 0 012.75 7H7.5V5h-.75A.75.75 0 016 4.25v-1.5z",fill:"currentColor"});function Te(){return(Te=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ge=t.createElement("path",{d:"M7.093 3.671a.317.317 0 010-.448L8.14 2.175a4.024 4.024 0 015.685 0 4.024 4.024 0 010 5.685l-1.048 1.047a.317.317 0 01-.448 0L11.28 7.86a.317.317 0 010-.449l1.048-1.047a1.906 1.906 0 000-2.693 1.906 1.906 0 00-2.693 0L8.59 4.718a.317.317 0 01-.449 0L7.093 3.671zM1.293 1.293a1.001 1.001 0 011.416 0l11.998 11.998a1.001 1.001 0 01-1.416 1.416l-3.159-3.16-2.272 2.277a4.024 4.024 0 01-5.685 0 4.024 4.024 0 010-5.684l2.273-2.277L1.293 2.71a1.001 1.001 0 010-1.416zm4.65 6.066L3.672 9.636a1.906 1.906 0 000 2.693c.743.742 1.95.742 2.693 0l2.272-2.277-2.692-2.693z",fill:"currentColor"});function Ue(){return(Ue=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ie=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.524 2.575v5.557h1.712c.706 0 1.033.783.5 1.196l-3.237 2.506a.832.832 0 01-.998 0L4.265 9.328c-.534-.413-.207-1.196.499-1.196h1.611V2.575a1.575 1.575 0 013.15 0zM2.5 11h1.8l2.405 1.862a2.132 2.132 0 002.59 0L11.7 11h1.8a1.5 1.5 0 010 3h-11a1.5 1.5 0 010-3z",fill:"currentColor"});function Ne(){return(Ne=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var We=t.createElement("g",{clipPath:"url(#Edit_svg__clip0)"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.922 1.681a.963.963 0 011.362 0l1.363 1.363a.963.963 0 010 1.362L13.284 5.77 10.56 3.044 9.538 4.066l2.725 2.725-7.154 7.153-3.746 1.022 1.021-3.747 9.538-9.538z",fill:"currentColor"})),Fe=t.createElement("defs",null,t.createElement("clipPath",{id:"Edit_svg__clip0"},t.createElement("path",{fill:"currentColor",d:"M0 0h16v16H0z"})));function qe(){return(qe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Xe=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.75 6a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm5 0a1.75 1.75 0 110 3.5 1.75 1.75 0 010-3.5zm6.75 1.75a1.75 1.75 0 10-3.5 0 1.75 1.75 0 003.5 0z",fill:"currentColor"});function $e(){return($e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ke=t.createElement("path",{d:"M14.623 5.186a.278.278 0 000-.385l-2.805-2.915a.277.277 0 00-.477.192v1.424A6.5 6.5 0 005 10v.1a1.5 1.5 0 003 0V10a3.5 3.5 0 013.34-3.496v1.405c0 .25.305.373.478.193l2.805-2.916z",fill:"currentColor"}),Qe=t.createElement("path",{d:"M6.5 3.879a.75.75 0 00-.75-.75H4a2 2 0 00-2 2v6.864a2 2 0 002 2h6.864a2 2 0 002-2V10.05a.75.75 0 00-1.5 0v1.943a.5.5 0 01-.5.5H4a.5.5 0 01-.5-.5V5.129a.5.5 0 01.5-.5h1.75a.75.75 0 00.75-.75z",fill:"currentColor"});function Ze(){return(Ze=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Je=t.createElement("path",{d:"M7.538 1.11a.5.5 0 01.924 0l1.537 3.696a.5.5 0 00.421.306l3.99.32a.5.5 0 01.285.878l-3.04 2.604a.5.5 0 00-.16.496l.928 3.893a.5.5 0 01-.747.542L8.261 11.76a.5.5 0 00-.522 0l-3.415 2.086a.5.5 0 01-.747-.542l.928-3.893a.5.5 0 00-.16-.496L1.304 6.31a.5.5 0 01.285-.878l3.99-.32A.5.5 0 006 4.806L7.538 1.11z",fill:"currentColor"});function Ye(){return(Ye=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var et=t.createElement("path",{d:"M3 13V7h4.5A1.5 1.5 0 009 5.5V1h2a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2z",fill:"currentColor"}),tt=t.createElement("path",{d:"M7.833 1h-.919a1 1 0 00-.707.293L3.293 4.207A1 1 0 003 4.914v.92h3.833a1 1 0 001-1V1z",fill:"currentColor"});function rt(){return(rt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var nt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 6.148l-3.8-3.94C1.797 1.79 2.044 1 2.576 1h10.848c.532 0 .779.79.377 1.208L10 6.148v5.625a.5.5 0 01-.17.376l-3 2.625a.5.5 0 01-.83-.376v-8.25z",fill:"currentColor"});function at(){return(at=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var lt=t.createElement("path",{d:"M1.5 2a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM15 2.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM1.5 14a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM14.5 14a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ot(){return(ot=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var it=t.createElement("path",{d:"M10.5 7a.5.5 0 01-.5-.5v-4a.5.5 0 01.5-.5h1a.5.5 0 01.5.5v2a.5.5 0 00.5.5h2a.5.5 0 01.5.5v1a.5.5 0 01-.5.5h-4zM6 9.5a.5.5 0 00-.5-.5h-4a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h2a.5.5 0 01.5.5v2a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-4zM10.5 9a.5.5 0 00-.5.5v4a.5.5 0 00.5.5h1a.5.5 0 00.5-.5v-2a.5.5 0 01.5-.5h2a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5h-4zM5.5 7a.5.5 0 00.5-.5v-4a.5.5 0 00-.5-.5h-1a.5.5 0 00-.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 00-.5.5v1a.5.5 0 00.5.5h4z",fill:"currentColor"});function ct(){return(ct=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ht=t.createElement("path",{d:"M2 1a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1V4a1 1 0 00-1-1H8a1 1 0 01-1-1 1 1 0 00-1-1H2z",fill:"currentColor"});function vt(){return(vt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ut=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 8A6 6 0 112 8a6 6 0 0112 0zm-5.301 4.699A4.73 4.73 0 015 11.683V10L3.257 8.257A4.75 4.75 0 018 3.25V4.5L6.5 6v1l-.5.5-.5-.5-1 1 .5.5h2.5L8 9v1l-1 1 1.699 1.699zm4.047-4.496a4.73 4.73 0 00-.924-3.025L10.5 6.5V9h1.25l.996-.797z",fill:"currentColor"});function ft(){return(ft=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pt=t.createElement("path",{d:"M11 5V4a3 3 0 00-6 0v1h6z",fill:"currentColor"}),st=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 000 1H2v6h-.5a.5.5 0 000 1h13a.5.5 0 000-1H14V7h.5a.5.5 0 000-1h-13zm3 2.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3zM8 8a.5.5 0 00-.5.5v3a.5.5 0 001 0v-3A.5.5 0 008 8zm2.5.5a.5.5 0 011 0v3a.5.5 0 01-1 0v-3z",fill:"currentColor"});function wt(){return(wt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var gt=t.createElement("path",{d:"M7.52 2.4a.75.75 0 01.96 0l5.13 4.275a.5.5 0 01.06.71l-.217.253a.5.5 0 01-.686.07l-4.46-3.47a.5.5 0 00-.614 0l-4.46 3.47a.5.5 0 01-.686-.07l-.217-.253a.5.5 0 01.06-.71L7.52 2.4z",fill:"currentColor"}),dt=t.createElement("path",{d:"M7.685 5.43L4 8.316v4.922c0 .42.336.762.75.762H6.5a.5.5 0 00.5-.5v-2.04c0-.281.224-.509.5-.509h1c.276 0 .5.228.5.508V13.5a.5.5 0 00.5.5h1.75c.414 0 .75-.341.75-.762V8.316L8.315 5.43a.494.494 0 00-.63 0z",fill:"currentColor"});function mt(){return(mt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var yt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 4.5a1 1 0 012 0v4a1 1 0 01-2 0v-4zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function Ot(){return(Ot=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var bt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM9 4a1 1 0 11-2 0 1 1 0 012 0zM8 6a1 1 0 011 1v4h.5a.5.5 0 010 1h-3a.5.5 0 010-1H7V7h-.5a.5.5 0 010-1H8z",fill:"currentColor"});function zt(){return(zt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Et=t.createElement("path",{d:"M8.418 7.428a3.5 3.5 0 10-3.836-5.856 3.5 3.5 0 003.836 5.856zM3.091 8.562c.308-.357.838-.339 1.252-.112.64.35 1.375.55 2.157.55s1.517-.2 2.157-.55c.414-.227.944-.245 1.252.112.11.128.214.263.31.403A1.996 1.996 0 009.5 10.5 2 2 0 008.177 14H2v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"}),jt=t.createElement("path",{d:"M10.5 10.5a.998.998 0 011-1 1 1 0 011 1v1h1a1 1 0 110 2h-1v1a1 1 0 11-2 0v-1h-1a1 1 0 110-2h1v-1z",fill:"currentColor"});function xt(){return(xt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Mt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 10c.554 0 1.082-.113 1.562-.317L8.88 11l-.44.44a1.5 1.5 0 002.122 2.12l.439-.439.44.44a1.5 1.5 0 002.12-2.122L9.684 7.562A4 4 0 106 10zm-.75-3.5a1.25 1.25 0 100-2.5 1.25 1.25 0 000 2.5z",fill:"currentColor"});function Ct(){return(Ct=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Vt=t.createElement("path",{d:"M5 6a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5A.5.5 0 015 6zM5.5 7.5a.5.5 0 000 1h3a.5.5 0 000-1h-3z",fill:"currentColor"}),Ht=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.5a1 1 0 00-1 1v7.813l-.29.49a.91.91 0 00-.068.1L1 13a1 1 0 001 1h12a1 1 0 001-1l-.642-1.096a.901.901 0 00-.067-.1L14 11.313V3.5a1 1 0 00-1-1H3zM12.5 4h-9v6.5h9V4z",fill:"currentColor"});function Pt(){return(Pt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Rt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 7V5a4 4 0 118 0v2a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1V8a1 1 0 011-1zm2-2a2 2 0 114 0v2H6V5zm2.587 5.81A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Lt(){return(Lt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Bt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.323 9.819a5.302 5.302 0 006.463.805l4.144 4.144a1.3 1.3 0 101.838-1.838l-4.144-4.144a5.302 5.302 0 00-8.3-6.463 5.3 5.3 0 000 7.496zM7.98 4.162A2.7 2.7 0 114.162 7.98 2.7 2.7 0 017.98 4.162z",fill:"currentColor"});function At(){return(At=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var St=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 3l5.725-1.636A1 1 0 0113 2.326v7.348a1 1 0 01-1.275.962L6 9H3a2 2 0 01-2-2V5a2 2 0 012-2h3zm-.657 7H3v5h2.98a1 1 0 00.918-1.396L5.343 10zM16 6a2 2 0 01-2 2V4a2 2 0 012 2z",fill:"currentColor"});function kt(){return(kt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var _t=t.createElement("path",{d:"M2 4a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1zM3 11a1 1 0 100 2h10a1 1 0 100-2H3z",fill:"currentColor"});function Dt(){return(Dt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Tt=t.createElement("path",{d:"M3 6.5a1 1 0 00-1 1v1a1 1 0 001 1h10a1 1 0 001-1v-1a1 1 0 00-1-1H3z",fill:"currentColor"});function Gt(){return(Gt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ut=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.75 8a3.75 3.75 0 01-5.485 3.326l5.06-5.06c.272.518.425 1.108.425 1.734zM4.674 9.735l5.06-5.06a3.75 3.75 0 00-5.06 5.06zM14 8A6 6 0 112 8a6 6 0 0112 0z",fill:"currentColor"});function It(){return(It=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Nt=t.createElement("path",{d:"M4.5 6.25a.75.75 0 01.75-.75h3.5a.75.75 0 010 1.5h-3.5a.75.75 0 01-.75-.75zM4.5 8.75A.75.75 0 015.25 8h1.5a.75.75 0 010 1.5h-1.5a.75.75 0 01-.75-.75z",fill:"currentColor"}),Wt=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15 10l-4 4H3a2 2 0 01-2-2V4a2 2 0 012-2h10a2 2 0 012 2v6zm-2-6H3v8h7v-2a1 1 0 011-1h2V4z",fill:"currentColor"});function Ft(){return(Ft=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var qt=t.createElement("path",{d:"M13.823 2.45a.278.278 0 00-.272-.273l-4.045-.079a.277.277 0 00-.201.474l1.08 1.08-2.45 2.452a1.395 1.395 0 00-.148.174L5.999 8.065a1.369 1.369 0 101.936 1.936l1.787-1.788c.061-.043.12-.093.174-.147l2.451-2.452 1.081 1.081a.277.277 0 00.474-.201l-.079-4.045z",fill:"currentColor"}),Xt=t.createElement("path",{d:"M7.25 3.129a.75.75 0 010 1.5H4a.5.5 0 00-.5.5v6.864a.5.5 0 00.5.5h6.864a.5.5 0 00.5-.5V8.75a.75.75 0 011.5 0v3.243a2 2 0 01-2 2H4a2 2 0 01-2-2V5.129a2 2 0 012-2h3.25z",fill:"currentColor"});function $t(){return($t=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Kt=t.createElement("path",{d:"M4.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1zM10.5 2a1 1 0 00-1 1v10a1 1 0 001 1h1a1 1 0 001-1V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function Qt(){return(Qt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Zt=t.createElement("path",{d:"M11.5 4.5a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0z",fill:"currentColor"}),Jt=t.createElement("path",{d:"M8 8c-.708 0-1.367-.21-1.918-.572A4.483 4.483 0 018 7c.686 0 1.336.154 1.918.428C9.368 7.79 8.708 8 8 8zM4.591 8.562c.308-.357.838-.339 1.252-.112C6.483 8.8 7.218 9 8 9s1.517-.2 2.158-.55c.413-.227.943-.245 1.251.112A4.482 4.482 0 0112.5 11.5V14h-9v-2.5c0-1.123.411-2.15 1.091-2.938z",fill:"currentColor"});function Yt(){return(Yt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var er=t.createElement("path",{d:"M4.808 8.923a2.962 2.962 0 100-5.923 2.962 2.962 0 000 5.923zM2.982 9.304c-.35-.192-.798-.207-1.059.095A3.793 3.793 0 001 11.885V14h7.615v-2.115c0-.95-.347-1.819-.923-2.486-.26-.302-.708-.287-1.059-.095a3.79 3.79 0 01-1.825.465 3.79 3.79 0 01-1.826-.465zM9.615 11.885V13H15v-1.906c0-.734-.274-1.405-.727-1.92-.206-.234-.559-.222-.835-.074-.427.23-.917.36-1.438.36-.521 0-1.011-.13-1.438-.36-.276-.148-.63-.16-.835.073-.21.239-.38.51-.504.806.252.585.392 1.23.392 1.906zM14.333 6.288c0 1.264-1.044 2.289-2.333 2.289-1.289 0-2.333-1.025-2.333-2.289C9.667 5.025 10.71 4 12 4c1.289 0 2.333 1.025 2.333 2.288z",fill:"currentColor"});function tr(){return(tr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var rr=t.createElement("path",{d:"M10 4.5A3.497 3.497 0 016.5 8a3.484 3.484 0 01-1.918-.572A3.5 3.5 0 1110 4.5zM4.343 8.45c-.414-.227-.944-.245-1.252.112A4.482 4.482 0 002 11.5V14h6v-2.5c0-.445.194-.845.502-1.12.033-.82.393-1.554.954-2.076-.259-.051-.55.01-.799.146A4.48 4.48 0 016.5 9a4.48 4.48 0 01-2.157-.55z",fill:"currentColor"}),nr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 10.5v.5a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h4a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5v-.5a2 2 0 10-4 0zm2-1a1 1 0 00-1 1v.5h2v-.5a1 1 0 00-1-1z",fill:"currentColor"});function ar(){return(ar=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var lr=t.createElement("path",{d:"M13.779 6.704a1.5 1.5 0 010 2.592l-7.523 4.388A1.5 1.5 0 014 12.388V3.612a1.5 1.5 0 012.256-1.296l7.523 4.388z",fill:"currentColor"});function or(){return(or=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ir=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 2a1 1 0 00-1 1v3.5H3a1 1 0 00-1 1v1a1 1 0 001 1h3.5V13a1 1 0 001 1h1a1 1 0 001-1V9.5H13a1 1 0 001-1v-1a1 1 0 00-1-1H9.5V3a1 1 0 00-1-1h-1z",fill:"currentColor"});function cr(){return(cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var hr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM7 5a1 1 0 012 0v2h2a1 1 0 110 2H9v2a1 1 0 11-2 0V9H5a1 1 0 110-2h2V5z",fill:"currentColor"});function vr(){return(vr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var ur=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zM6.932 5.612C7.054 5.298 7.425 5 7.942 5 8.615 5 9 5.478 9 5.875c0 .162-.057.33-.172.476a.985.985 0 01-.242.216l-.016.01a1.141 1.141 0 01-.098.054c-.59.286-1.53.967-1.53 2.119V9a1 1 0 002 0c0-.035.011-.12.138-.27a2.66 2.66 0 01.587-.48 3 3 0 00.726-.656A2.742 2.742 0 0011 5.875C11 4.201 9.54 3 7.941 3c-1.275 0-2.43.745-2.873 1.888a1 1 0 101.864.724zM8 13a1 1 0 100-2 1 1 0 000 2z",fill:"currentColor"});function fr(){return(fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pr=t.createElement("path",{d:"M4.018 9.402c-.05.328-.313.598-.645.598h-.8c-.331 0-.603-.27-.57-.6a5.996 5.996 0 012.543-4.325A5.997 5.997 0 017.974 4h.028c2.699 0 4.95 1.718 5.467 4h1.414c.541 0 .792.672.383 1.026l-2.482 2.15a.585.585 0 01-.765 0l-2.482-2.15A.584.584 0 019.92 8h1.446c-.468-1.085-1.68-2-3.364-2a3.98 3.98 0 00-2.543.89 3.996 3.996 0 00-1.441 2.512z",fill:"currentColor"});function sr(){return(sr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var wr=t.createElement("path",{d:"M8.033 2c2.699 0 4.95 1.718 5.467 4h1.414c.542 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15A.584.584 0 019.951 6h1.447c-.469-1.085-1.68-2-3.365-2-1.026 0-1.877.34-2.491.85-.243.202-.618.203-.817-.043l-.61-.754a.468.468 0 01.044-.651C5.163 2.534 6.53 2 8.033 2zM3.95 6.843a.584.584 0 00-.765 0L.703 8.992a.584.584 0 00.383 1.026h1.418C3.03 12.291 5.275 14 7.967 14c1.505 0 2.87-.534 3.874-1.402a.468.468 0 00.044-.65l-.61-.755c-.2-.246-.574-.245-.817-.043-.614.51-1.465.85-2.49.85-1.676 0-2.883-.904-3.358-1.982H6.05a.584.584 0 00.383-1.026L3.95 6.842z",fill:"currentColor"});function gr(){return(gr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var dr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.39 7.713A3.488 3.488 0 018 8c-.494 0-.964-.102-1.39-.287L5.264 9.729a2.5 2.5 0 11-1.08-.634L5.57 7.02a3.5 3.5 0 114.86 0l1.385 2.076A2.501 2.501 0 0115 11.5a2.5 2.5 0 11-4.265-1.77L9.391 7.712zM9.75 4.5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function mr(){return(mr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var yr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 3.6c0-.56 0-.84.109-1.054a1 1 0 01.437-.437C2.76 2 3.04 2 3.6 2h7.737c.245 0 .367 0 .482.028a1 1 0 01.29.12c.1.061.187.148.36.32l1.062 1.063c.173.173.26.26.322.36.055.09.095.188.12.29.027.115.027.237.027.482V12.4c0 .56 0 .84-.109 1.054a1 1 0 01-.437.437c-.2.102-.46.109-.954.109V9.284c0-.126 0-.25-.008-.353a1.01 1.01 0 00-.101-.385 1 1 0 00-.437-.437 1.01 1.01 0 00-.385-.1C11.465 8 11.342 8 11.216 8H4.784c-.126 0-.249 0-.353.008a1.01 1.01 0 00-.385.101 1 1 0 00-.437.437 1.01 1.01 0 00-.1.385c-.009.104-.009.227-.009.353V14c-.494 0-.753-.007-.954-.109a1 1 0 01-.437-.437C2 13.24 2 12.96 2 12.4V3.6zm2-.1a.5.5 0 00-.5.5v2a.5.5 0 00.5.5h5a.5.5 0 00.5-.5V4a.5.5 0 00-.5-.5H4z",fill:"currentColor"}),Or=t.createElement("path",{d:"M11.5 9.3V14h-7V9.3c0-.148 0-.23.005-.288v-.006h.007C4.571 9 4.652 9 4.8 9h6.4c.148 0 .23 0 .288.005h.006v.007c.006.059.006.14.006.288z",fill:"currentColor"});function br(){return(br=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var zr=t.createElement("path",{d:"M2.132 10.849a5.5 5.5 0 118.4-6.571 4 4 0 014.398 6.444 1 1 0 01-.15.192l-1.77 1.898a1.995 1.995 0 01-1.51.688H7.792a2.5 2.5 0 110-2H11.5l1.166-1.25H8.5a3.75 3.75 0 00-6.368.599z",fill:"currentColor"});function Er(){return(Er=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var jr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 2.75a1.75 1.75 0 01-2.123 1.71l-.619.866a3.497 3.497 0 011.186 2.049h1.17a1.75 1.75 0 110 1.25h-1.17a3.497 3.497 0 01-1.186 2.05l.619.865a1.75 1.75 0 11-1.046.686l-.662-.926a3.495 3.495 0 01-2.331.002l-.664.93a1.75 1.75 0 11-1.043-.69l.616-.863a3.497 3.497 0 01-1.191-2.054h-1.17a1.75 1.75 0 110-1.25h1.17c.147-.819.58-1.54 1.191-2.054l-.616-.863a1.75 1.75 0 111.043-.69l.664.93A3.494 3.494 0 018 4.5c.41 0 .803.07 1.17.2l.66-.926A1.75 1.75 0 1113 2.75zM9.75 8a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0z",fill:"currentColor"});function xr(){return(xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Mr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.207 1.067a.75.75 0 00-.89.247l-.374.506a6.214 6.214 0 00-1.894.002l-.375-.506a.75.75 0 00-.89-.246l-1.126.467a.75.75 0 00-.454.804l.093.623c-.505.37-.958.82-1.338 1.34l-.623-.093a.75.75 0 00-.803.455l-.466 1.127a.75.75 0 00.247.89l.506.374a6.214 6.214 0 00.002 1.893l-.506.376a.75.75 0 00-.246.89l.467 1.126a.75.75 0 00.804.454l.623-.093c.37.505.82.958 1.34 1.338l-.093.623a.75.75 0 00.455.803l1.127.466a.75.75 0 00.89-.247l.374-.506a6.218 6.218 0 001.894-.002l.375.506a.75.75 0 00.89.246l1.126-.467a.75.75 0 00.454-.804l-.093-.623c.505-.37.958-.82 1.338-1.34l.623.093a.75.75 0 00.803-.455l.466-1.127a.75.75 0 00-.247-.89l-.506-.374a6.218 6.218 0 00-.002-1.894l.506-.375a.75.75 0 00.246-.89l-.467-1.126a.75.75 0 00-.804-.454l-.623.093a6.214 6.214 0 00-1.34-1.338l.093-.623a.75.75 0 00-.455-.803l-1.127-.466zm.334 7.984A2.75 2.75 0 115.46 6.949a2.75 2.75 0 015.082 2.102z",fill:"currentColor"});function Cr(){return(Cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Vr=t.createElement("path",{d:"M1.8 5.2l3.4 2.2-3.79 2.526a.5.5 0 00-.142.688l.557.86a.5.5 0 00.697.145L7.5 8.3c.3-.2.5-.5.5-.8 0-.3-.2-.6-.4-.8L2.522 3.284a.5.5 0 00-.699.143l-.547.847a.5.5 0 00.155.695L1.8 5.2zM6.7 13a.5.5 0 00.5.5h7.7a.5.5 0 00.5-.5v-1a.5.5 0 00-.5-.5H7.2a.5.5 0 00-.5.5v1z",fill:"currentColor"});function Hr(){return(Hr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Pr=t.createElement("path",{d:"M4.45 1.143a.584.584 0 00-.765 0L1.203 3.292a.584.584 0 00.383 1.026h1.312v9.352a1.169 1.169 0 102.338 0V4.318H6.55a.584.584 0 00.383-1.026L4.45 1.142zM8 5a1 1 0 000 2h6a1 1 0 100-2H8zM7 9a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 11a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Rr(){return(Rr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Lr=t.createElement("path",{d:"M4.45 14.696a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.025h1.312V2.168a1.169 1.169 0 112.338 0v9.351H6.55c.541 0 .792.673.383 1.027L4.45 14.696zM8 3a1 1 0 000 2h6a1 1 0 100-2H8zM7 7a1 1 0 011-1h4a1 1 0 110 2H8a1 1 0 01-1-1zM8 9a1 1 0 100 2h2a1 1 0 100-2H8z",fill:"currentColor"});function Br(){return(Br=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ar=t.createElement("path",{d:"M0 0h16v16H0V0zm14 4V2H2v2h12zm0 10V5H2v9h12zM8 6v7H6V6h2zm5 0v4H9V6h4zM5 8v5H3V8h2zm8 3v2H9v-2h4z",fill:"currentColor",fillRule:"evenodd"});function Sr(){return(Sr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var kr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 7a3 3 0 016 0v2.5c0 1.51-.957 2.798-2.298 3.288a1 1 0 10.265.967 4.512 4.512 0 002.787-2.785c.08.02.161.03.246.03h.5a2.5 2.5 0 00.406-4.967 5.002 5.002 0 00-9.813 0A2.5 2.5 0 003.5 11H4a1 1 0 001-1V7z",fill:"currentColor"});function _r(){return(_r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Dr=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 3.25C1 2.56 1.56 2 2.25 2h11.5c.69 0 1.25.56 1.25 1.25v9.5c0 .69-.56 1.25-1.25 1.25H2.25C1.56 14 1 13.44 1 12.75v-9.5zm2 4.12V4h4.37v3.37H3zm0 1.25V12h4.37V8.62H3zM8.62 12H13V8.62H8.62V12zM13 7.37V4H8.62v3.37H13z",fill:"currentColor"});function Tr(){return(Tr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Gr=t.createElement("path",{d:"M7.023 1.518c.513.024.957.363 1.12.853L9.38 6.108l1.56-2.092a1.24 1.24 0 011.872-.134l1.897 1.91c.388.39.388 1.023 0 1.413l-.377.354a.99.99 0 01-1.405 0l-.86-.89-2.122 2.847a1.239 1.239 0 01-2.172-.355L6.798 6.22 6.11 7.774c-.2.451-.644.742-1.135.742H1.994a.997.997 0 01-.994-1v-.5c0-.552.445-1 .994-1h2.174l1.66-3.758a1.242 1.242 0 011.195-.74zM14 12a1 1 0 011 1v.5a1 1 0 01-1 1H2a1 1 0 01-1-1V13a1 1 0 011-1h12z",fill:"currentColor"});function Ur(){return(Ur=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Ir=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2a1 1 0 011-1h4a1 1 0 011 1h2a1 1 0 011 1v1H2V3a1 1 0 011-1h2zm9 3H2l1.678 8.392A2 2 0 005.64 15h4.72a2 2 0 001.962-1.608L14 5z",fill:"currentColor"});function Nr(){return(Nr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Wr=t.createElement("path",{d:"M11.981 9.402c.05.328.313.598.645.598h.8c.331 0 .603-.27.57-.6a5.996 5.996 0 00-2.543-4.325A5.997 5.997 0 008.026 4h-.029C5.298 4 3.047 5.718 2.53 8H1.116a.584.584 0 00-.383 1.026l2.482 2.15c.22.19.545.19.765 0l2.482-2.15A.584.584 0 006.079 8H4.632c.47-1.085 1.68-2 3.365-2a3.98 3.98 0 012.543.89 3.996 3.996 0 011.441 2.512z",fill:"currentColor"});function Fr(){return(Fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var qr=t.createElement("path",{d:"M8.5 4.613c0-.383.191-.74.51-.953a6.87 6.87 0 012.145-.949l2.406-.601a.353.353 0 01.439.342v7.88c0 .238 0 .357-.043.453a.5.5 0 01-.176.211c-.087.06-.204.081-.438.123l-3.9.71c-.324.058-.486.088-.612.042a.5.5 0 01-.264-.22c-.067-.116-.067-.28-.067-.61V4.613zM2 2.452c0-.23.216-.398.439-.342l2.407.601a6.87 6.87 0 012.144.95c.319.211.51.569.51.952v6.428c0 .33 0 .494-.067.61a.5.5 0 01-.264.22c-.126.046-.288.016-.612-.043l-3.9-.709c-.234-.042-.35-.063-.438-.123a.5.5 0 01-.176-.21C2 10.688 2 10.57 2 10.331v-7.88zM2.008 12.41a.5.5 0 01.581-.402l5.143.935c.177.032.359.032.536 0l5.143-.935a.5.5 0 01.178.984l-4.134.752c-.163.434-.753.756-1.455.756-.702 0-1.292-.322-1.455-.756l-4.134-.752a.5.5 0 01-.403-.581z",fill:"currentColor"});function Xr(){return(Xr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var $r=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.157 4.221A2 2 0 0110 5v2H4a1 1 0 00-1 1v6a1 1 0 001 1h8a1 1 0 001-1V8a1 1 0 00-1-1V5a4 4 0 00-7.822-1.182C3.982 4.45 4.538 5 5.2 5c.442 0 .785-.372.957-.779zm2.43 6.589A.999.999 0 008 9a1 1 0 00-.58 1.815v1.852a.583.583 0 001.167 0V10.81z",fill:"currentColor"});function Kr(){return(Kr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Qr=t.createElement("path",{d:"M3.685 1.143c.22-.19.545-.19.765 0l2.482 2.149a.584.584 0 01-.383 1.026H5.236v7.364H6.55c.541 0 .792.672.383 1.026l-2.482 2.15a.584.584 0 01-.765 0l-2.482-2.15a.584.584 0 01.383-1.026h1.312V4.318H1.586a.584.584 0 01-.383-1.026l2.482-2.15zM8 8a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1zM9 4a1 1 0 000 2h5a1 1 0 100-2H9zM8 11a1 1 0 011-1h5a1 1 0 110 2H9a1 1 0 01-1-1z",fill:"currentColor"});function Zr(){return(Zr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var Jr=t.createElement("path",{d:"M7.527 1.21a.638.638 0 01.948 0l3.327 3.563c.422.452.123 1.227-.475 1.227H4.673c-.599 0-.898-.775-.476-1.227l3.33-3.562zm3.8 8.79c.598 0 .897.775.475 1.228l-3.327 3.56a.638.638 0 01-.948 0l-3.33-3.56C3.775 10.775 4.074 10 4.673 10h6.654z",fill:"currentColor",fillRule:"evenodd"});function Yr(){return(Yr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var en=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.297 11v.938a4 4 0 10-.764-7.66A5.501 5.501 0 000 6.5a5.5 5.5 0 005.797 5.492V11h-.403c-1.395 0-2.08-1.7-1.075-2.667L7.472 5.3a1.55 1.55 0 012.15 0l3.152 3.034C13.78 9.301 13.094 11 11.7 11h-.402zM8.339 6.2a.3.3 0 01.416 0l3.152 3.034a.3.3 0 01-.208.516h-1.652v3.75a1.5 1.5 0 01-3 0V9.75H5.394a.3.3 0 01-.208-.516L8.339 6.2z",fill:"currentColor"});function tn(){return(tn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var rn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.5 2.75a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zm0 5a1.75 1.75 0 11-3.5 0 1.75 1.75 0 013.5 0zM7.75 14.5a1.75 1.75 0 100-3.5 1.75 1.75 0 000 3.5z",fill:"currentColor"});function nn(){return(nn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var an=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 2.008c3.934 0 6.473 3.129 7.455 4.583l.043.064C15.713 6.97 16 7.391 16 8s-.287 1.03-.502 1.345l-.043.064c-.982 1.454-3.521 4.583-7.455 4.583S1.527 10.863.545 9.41l-.043-.064C.287 9.03 0 8.609 0 8s.287-1.03.502-1.345l.043-.064C1.527 5.137 4.066 2.008 8 2.008zM9.13 4.13A5.147 5.147 0 008 4.005C5.75 4.005 3.927 5.794 3.927 8c0 2.206 1.824 3.995 4.073 3.995 2.25 0 4.073-1.789 4.073-3.995 0-2.206-1.824-3.995-4.073-3.995.378 0 .756.045 1.13.126zM8 10.996c1.687 0 3.055-1.341 3.055-2.996S9.687 5.004 8 5.004 4.945 6.345 4.945 8 6.313 10.996 8 10.996z",fill:"currentColor"});function ln(){return(ln=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var on=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14.601 1.266a1.03 1.03 0 00-1.433.049L1.704 13.486a.987.987 0 00.062 1.407 1.03 1.03 0 001.433-.049l1.793-1.904A7.348 7.348 0 008 13.587c3.934 0 6.473-3.133 7.455-4.59l.043-.063c.215-.316.502-.737.502-1.347s-.287-1.03-.502-1.346l-.043-.065a12.85 12.85 0 00-1.949-2.275l1.157-1.228a.987.987 0 00-.062-1.407zm-2.93 4.585l-.764.81c.096.292.148.603.148.926 0 1.657-1.368 3-3.055 3-.246 0-.485-.028-.714-.082l-.763.81c.458.176.956.272 1.477.272 2.25 0 4.073-1.79 4.073-4 0-.622-.145-1.211-.403-1.736zM8 1.587c.919 0 1.762.171 2.526.452L8.98 3.68A5.13 5.13 0 008 3.587c-2.25 0-4.073 1.79-4.073 4 0 .435.07.853.201 1.245l-1.985 2.107A13.06 13.06 0 01.545 8.998l-.043-.064C.287 8.618 0 8.197 0 7.587s.287-1.03.502-1.346l.043-.065C1.527 4.72 4.066 1.587 8 1.587zm0 2c.327 0 .654.034.978.095l-.016.017A4.155 4.155 0 008 3.587zm0 1c.041 0 .083 0 .124.002L4.966 7.942a2.978 2.978 0 01-.02-.355c0-1.657 1.367-3 3.054-3z",fill:"currentColor"});function cn(){return(cn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var hn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.864 2.514a.983.983 0 00-1.728 0L1.122 13.539A.987.987 0 001.986 15h12.028a.987.987 0 00.864-1.461L8.864 2.514zM7 6a1 1 0 012 0v4a1 1 0 11-2 0V6zm2 7a1 1 0 11-2 0 1 1 0 012 0z",fill:"currentColor"});function vn(){return(vn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var un=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.203 3.404a1 1 0 00-1.414 0L8.314 5.879 5.839 3.404a1 1 0 00-1.414 0l-.707.707a1 1 0 000 1.414L6.192 8l-2.474 2.475a1 1 0 000 1.414l.707.707a1 1 0 001.414 0l2.475-2.475 2.475 2.475a1 1 0 001.414 0l.707-.707a1 1 0 000-1.414L10.435 8l2.475-2.475a1 1 0 000-1.414l-.707-.707z",fill:"currentColor"});function fn(){return(fn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}var pn=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8 15A7 7 0 108 1a7 7 0 000 14zm1.414-9.828a1 1 0 111.414 1.414L9.414 8l1.414 1.414a1 1 0 11-1.414 1.414L8 9.414l-1.414 1.414a1 1 0 11-1.414-1.414L6.586 8 5.172 6.586a1 1 0 011.414-1.414L8 6.586l1.414-1.414z",fill:"currentColor"});var sn={ActivityFeed:function(e){return t.createElement("svg",m({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),y)},AddFile:function(e){return t.createElement("svg",O({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),b)},Apps:function(e){return t.createElement("svg",z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),E)},Array:function(e){return t.createElement("svg",j({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),x)},ArrowDown:function(e){return t.createElement("svg",M({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),C)},ArrowLeft:function(e){return t.createElement("svg",V({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),H)},ArrowRight:function(e){return t.createElement("svg",P({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),R)},ArrowUp:function(e){return t.createElement("svg",L({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),B)},Beaker:function(e){return t.createElement("svg",A({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),S)},Bell:function(e){return t.createElement("svg",k({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),_)},Building:function(e){return t.createElement("svg",D({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),T)},Bulb:function(e){return t.createElement("svg",G({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),U,I)},Calendar:function(e){return t.createElement("svg",N({width:18,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),W)},CaretDown:function(e){return t.createElement("svg",F({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),q)},CaretLeft:function(e){return t.createElement("svg",X({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),$)},CaretRight:function(e){return t.createElement("svg",K({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Q)},CaretUp:function(e){return t.createElement("svg",Z({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),J)},Charts:function(e){return t.createElement("svg",Y({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ee)},Checkmark:function(e){return t.createElement("svg",te({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),re)},CheckmarkWithCircle:function(e){return t.createElement("svg",ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ae)},ChevronDown:function(e){return t.createElement("svg",le({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),oe)},ChevronLeft:function(e){return t.createElement("svg",ie({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ce)},ChevronRight:function(e){return t.createElement("svg",he({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ve)},ChevronUp:function(e){return t.createElement("svg",ue({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),fe)},Clock:function(e){return t.createElement("svg",pe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),se)},ClockWithArrow:function(e){return t.createElement("svg",we({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ge,de)},Clone:function(e){return t.createElement("svg",me({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ye,Oe)},Cloud:function(e){return t.createElement("svg",be({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ze)},Code:function(e){return t.createElement("svg",Ee({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),je)},Connect:function(e){return t.createElement("svg",xe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Me)},Copy:function(e){return t.createElement("svg",Ce({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ve)},CreditCard:function(e){return t.createElement("svg",He({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Pe)},CurlyBraces:function(e){return t.createElement("svg",Re({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Le)},Database:function(e){return t.createElement("svg",Be({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ae,Se,ke)},Diagram:function(e){return t.createElement("svg",_e({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),De)},Disconnect:function(e){return t.createElement("svg",Te({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ge)},Download:function(e){return t.createElement("svg",Ue({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ie)},Edit:function(e){return t.createElement("svg",Ne({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),We,Fe)},Ellipsis:function(e){return t.createElement("svg",qe({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Xe)},Export:function(e){return t.createElement("svg",$e({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ke,Qe)},Favorite:function(e){return t.createElement("svg",Ze({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Je)},File:function(e){return t.createElement("svg",Ye({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),et,tt)},Filter:function(e){return t.createElement("svg",rt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),nt)},FullScreenEnter:function(e){return t.createElement("svg",at({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),lt)},FullScreenExit:function(e){return t.createElement("svg",ot({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),it)},Folder:function(e){return t.createElement("svg",ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ht)},GlobeAmericas:function(e){return t.createElement("svg",vt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),ut)},GovernmentBuilding:function(e){return t.createElement("svg",ft({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pt,st)},Home:function(e){return t.createElement("svg",wt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),gt,dt)},ImportantWithCircle:function(e){return t.createElement("svg",mt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),yt)},InfoWithCircle:function(e){return t.createElement("svg",Ot({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),bt)},InviteUser:function(e){return t.createElement("svg",zt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Et,jt)},Key:function(e){return t.createElement("svg",xt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Mt)},Laptop:function(e){return t.createElement("svg",Ct({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Vt,Ht)},Lock:function(e){return t.createElement("svg",Pt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Rt)},MagnifyingGlass:function(e){return t.createElement("svg",Lt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Bt)},Megaphone:function(e){return t.createElement("svg",At({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),St)},Menu:function(e){return t.createElement("svg",kt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),_t)},Minus:function(e){return t.createElement("svg",Dt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Tt)},NotAllowed:function(e){return t.createElement("svg",Gt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ut)},Note:function(e){return t.createElement("svg",It({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Nt,Wt)},OpenNewTab:function(e){return t.createElement("svg",Ft({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),qt,Xt)},Pause:function(e){return t.createElement("svg",$t({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Kt)},Person:function(e){return t.createElement("svg",Qt({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Zt,Jt)},PersonGroup:function(e){return t.createElement("svg",Yt({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),er)},PersonWithLock:function(e){return t.createElement("svg",tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),rr,nr)},Play:function(e){return t.createElement("svg",ar({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),lr)},Plus:function(e){return t.createElement("svg",or({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ir)},PlusWithCircle:function(e){return t.createElement("svg",cr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),hr)},QuestionMarkWithCircle:function(e){return t.createElement("svg",vr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),ur)},Redo:function(e){return t.createElement("svg",fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pr)},Refresh:function(e){return t.createElement("svg",sr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),wr)},ReplicaSet:function(e){return t.createElement("svg",gr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),dr)},Save:function(e){return t.createElement("svg",mr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),yr,Or)},Serverless:function(e){return t.createElement("svg",br({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),zr)},ShardedCluster:function(e){return t.createElement("svg",Er({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),jr)},Settings:function(e){return t.createElement("svg",xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Mr)},Shell:function(e){return t.createElement("svg",Cr({width:16,height:16,fill:"none",viewBox:"0 0 16 16"},e),Vr)},SortAscending:function(e){return t.createElement("svg",Hr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Pr)},SortDescending:function(e){return t.createElement("svg",Rr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Lr)},Stitch:function(e){return t.createElement("svg",Br({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ar)},Support:function(e){return t.createElement("svg",Sr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),kr)},Table:function(e){return t.createElement("svg",_r({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Dr)},TimeSeries:function(e){return t.createElement("svg",Tr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Gr)},Trash:function(e){return t.createElement("svg",Ur({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Ir)},Undo:function(e){return t.createElement("svg",Nr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Wr)},University:function(e){return t.createElement("svg",Fr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),qr)},Unlock:function(e){return t.createElement("svg",Xr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),$r)},Unsorted:function(e){return t.createElement("svg",Kr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Qr)},UpDownCarets:function(e){return t.createElement("svg",Zr({width:16,height:16,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),Jr)},Upload:function(e){return t.createElement("svg",Yr({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),en)},VerticalEllipsis:function(e){return t.createElement("svg",tn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),rn)},Visibility:function(e){return t.createElement("svg",nn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),an)},VisibilityOff:function(e){return t.createElement("svg",ln({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),on)},Warning:function(e){return t.createElement("svg",cn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),hn)},X:function(e){return t.createElement("svg",vn({width:17,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),un)},XWithCircle:function(e){return t.createElement("svg",fn({width:16,height:16,fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},e),pn)}},wn=Object.keys(sn).reduce((function(e,t){return e[t]=d(t,sn[t]),e}),{}),gn=Object.freeze({__proto__:null});var dn=w(wn);e.LGGlyph=gn,e.Size=u,e.createGlyphComponent=d,e.createIconComponent=w,e.default=dn,e.glyphs=wn,e.isComponentGlyph=function(e){return null!=e&&"object"===i(e)&&"type"in e&&!0===e.type.isGlyph},Object.defineProperty(e,"__esModule",{value:!0})}));
2
2
  //# sourceMappingURL=index.js.map