diff --git a/packages/evo-react/.prettierignore b/packages/evo-react/.prettierignore index 92e7abbef7b..43319b6ff0f 100644 --- a/packages/evo-react/.prettierignore +++ b/packages/evo-react/.prettierignore @@ -1,3 +1,4 @@ # Autogenerated files src/icon/icons/* +src/icon/icon.stories.tsx src/icon/types.ts diff --git a/packages/evo-react/scripts/import-svg.ts b/packages/evo-react/scripts/import-svg.ts index 622ce9aa22e..1155a6382f7 100644 --- a/packages/evo-react/scripts/import-svg.ts +++ b/packages/evo-react/scripts/import-svg.ts @@ -103,6 +103,7 @@ export function ${iconComponentName}(props: EvoIconComponentProps) { const storiesContent = `${fileHeader}\n// @ts-nocheck\n import type { Meta, StoryObj } from "@storybook/react-vite"; import { EvoIconProvider } from "./context"; +import { IconExample, IconGrid } from "./icon-example"; import type { EvoIconComponentProps } from "./icons/types"; ${icons.map(({ componentName, filePath }) => `import { ${componentName} } from "./icons/${filePath}";`).join("\n")} @@ -169,22 +170,15 @@ type Story = StoryObj; export const AllIcons: Story = { render: (args) => ( - - - ${icons - .map( - ({ componentName, filePath }) => ` - - - - - `, - ) - .join("\n")} - -
{${componentName}.name || "${filePath}"} - <${componentName} {...args} /> -
+ + ${icons + .map( + ({ componentName }) => ` + <${componentName} {...args} /> + `, + ) + .join("\n ")} +
), }; diff --git a/packages/evo-react/src/css-modules.d.ts b/packages/evo-react/src/css-modules.d.ts new file mode 100644 index 00000000000..c65e67a2963 --- /dev/null +++ b/packages/evo-react/src/css-modules.d.ts @@ -0,0 +1,4 @@ +declare module "*.module.css" { + const classes: Record; + export default classes; +} diff --git a/packages/evo-react/src/icon/icon-example.module.css b/packages/evo-react/src/icon/icon-example.module.css new file mode 100644 index 00000000000..75197fc9157 --- /dev/null +++ b/packages/evo-react/src/icon/icon-example.module.css @@ -0,0 +1,46 @@ +.grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); + gap: 4px; +} + +.cell { + position: relative; + display: flex; + justify-content: center; + align-items: center; + height: 72px; +} + +.host { + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 100%; + margin: 0; + padding: 0; + border: 0; + background-color: transparent; + border-radius: 8px; + cursor: pointer; + color: inherit; +} + +.host:hover { + background-color: var(--color-background-faint); +} + +.bubble { + position: absolute; + top: calc(100% + 4px); + left: 50%; + transform: translateX(-50%); + z-index: 1; + padding: 8px 12px; + border-radius: 8px; + background-color: var(--color-background-inverse); + color: var(--color-foreground-on-inverse); + font-size: 14px; + white-space: nowrap; +} diff --git a/packages/evo-react/src/icon/icon-example.tsx b/packages/evo-react/src/icon/icon-example.tsx new file mode 100644 index 00000000000..4ff7ff8370e --- /dev/null +++ b/packages/evo-react/src/icon/icon-example.tsx @@ -0,0 +1,44 @@ +import { useState, type ReactNode } from "react"; +import styles from "./icon-example.module.css"; + +export function IconGrid({ children }: { children: ReactNode }) { + return
{children}
; +} + +export function IconExample({ + name, + children, +}: { + name: string; + children: ReactNode; +}) { + const [open, setOpen] = useState(false); + return ( +
{ + if (!e.currentTarget.contains(e.relatedTarget)) { + setOpen(false); + } + }} + > + + {open && ( + + {`<${name}/>`} + + )} +
+ ); +} diff --git a/packages/evo-react/src/icon/icon.stories.tsx b/packages/evo-react/src/icon/icon.stories.tsx index 23940a6b3ff..8fb1ec53982 100644 --- a/packages/evo-react/src/icon/icon.stories.tsx +++ b/packages/evo-react/src/icon/icon.stories.tsx @@ -3,6 +3,7 @@ import type { Meta, StoryObj } from "@storybook/react-vite"; import { EvoIconProvider } from "./context"; +import { IconExample, IconGrid } from "./icon-example"; import type { EvoIconComponentProps } from "./icons/types"; import { EvoIconAdd12 } from "./icons/add-12"; import { EvoIconAdd16 } from "./icons/add-16"; @@ -1214,9178 +1215,3446 @@ type Story = StoryObj; export const AllIcons: Story = { render: (args) => ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{EvoIconAdd12.name || "add-12"} - -
{EvoIconAdd16.name || "add-16"} - -
{EvoIconAdd24.name || "add-24"} - -
{EvoIconAddImage24.name || "add-image-24"} - -
{EvoIconAdjustPriceDown16.name || "adjust-price-down-16"} - -
{EvoIconAdjustPriceDown24.name || "adjust-price-down-24"} - -
{EvoIconAdjustPriceUp16.name || "adjust-price-up-16"} - -
{EvoIconAdjustPriceUp24.name || "adjust-price-up-24"} - -
{EvoIconAfterpay12Colored.name || "afterpay-12-colored"} - -
{EvoIconAfterpay18Colored.name || "afterpay-18-colored"} - -
{EvoIconAfterpay24Colored.name || "afterpay-24-colored"} - -
{EvoIconAfterpay32Colored.name || "afterpay-32-colored"} - -
{EvoIconAfterpayLogo24Colored.name || "afterpay-logo-24-colored"} - -
{EvoIconAi16.name || "ai-16"} - -
{EvoIconAi20.name || "ai-20"} - -
{EvoIconAi24.name || "ai-24"} - -
{EvoIconAiCamera16.name || "ai-camera-16"} - -
{EvoIconAiCamera20.name || "ai-camera-20"} - -
{EvoIconAiCamera24.name || "ai-camera-24"} - -
{EvoIconAiFilled16.name || "ai-filled-16"} - -
{EvoIconAiFilled20.name || "ai-filled-20"} - -
{EvoIconAiFilled24.name || "ai-filled-24"} - -
{EvoIconAiMobile16.name || "ai-mobile-16"} - -
{EvoIconAiMobile20.name || "ai-mobile-20"} - -
{EvoIconAiMobile24.name || "ai-mobile-24"} - -
{EvoIconAiSearch16.name || "ai-search-16"} - -
{EvoIconAiSearch20.name || "ai-search-20"} - -
{EvoIconAiSearch24.name || "ai-search-24"} - -
{EvoIconAiSearchFilled24.name || "ai-search-filled-24"} - -
{EvoIconAiShirt16.name || "ai-shirt-16"} - -
{EvoIconAiShirt20.name || "ai-shirt-20"} - -
{EvoIconAiShirt24.name || "ai-shirt-24"} - -
{EvoIconAiSpectrum16Colored.name || "ai-spectrum-16-colored"} - -
{EvoIconAiSpectrum20Colored.name || "ai-spectrum-20-colored"} - -
{EvoIconAiSpectrum24Colored.name || "ai-spectrum-24-colored"} - -
{EvoIconAiSpectrumFilled16Colored.name || "ai-spectrum-filled-16-colored"} - -
{EvoIconAiSpectrumFilled20Colored.name || "ai-spectrum-filled-20-colored"} - -
{EvoIconAiSpectrumFilled24Colored.name || "ai-spectrum-filled-24-colored"} - -
{EvoIconAiSpectrumThin16Colored.name || "ai-spectrum-thin-16-colored"} - -
{EvoIconAiSummary16.name || "ai-summary-16"} - -
{EvoIconAiSummary20.name || "ai-summary-20"} - -
{EvoIconAiSummary24.name || "ai-summary-24"} - -
{EvoIconAiThin16.name || "ai-thin-16"} - -
{EvoIconAiTools16.name || "ai-tools-16"} - -
{EvoIconAiTools20.name || "ai-tools-20"} - -
{EvoIconAiTools24.name || "ai-tools-24"} - -
{EvoIconAlipayCn12Colored.name || "alipay-cn-12-colored"} - -
{EvoIconAlipayCn18Colored.name || "alipay-cn-18-colored"} - -
{EvoIconAlipayCn24Colored.name || "alipay-cn-24-colored"} - -
{EvoIconAlipayCn32Colored.name || "alipay-cn-32-colored"} - -
{EvoIconAlipayHk12Colored.name || "alipay-hk-12-colored"} - -
{EvoIconAlipayHk18Colored.name || "alipay-hk-18-colored"} - -
{EvoIconAlipayHk24Colored.name || "alipay-hk-24-colored"} - -
{EvoIconAlipayHk32Colored.name || "alipay-hk-32-colored"} - -
{EvoIconAmex12Colored.name || "amex-12-colored"} - -
{EvoIconAmex18Colored.name || "amex-18-colored"} - -
{EvoIconAmex24Colored.name || "amex-24-colored"} - -
{EvoIconAmex32Colored.name || "amex-32-colored"} - -
{EvoIconApple24.name || "apple-24"} - -
{EvoIconAppleMusic24Colored.name || "apple-music-24-colored"} - -
{EvoIconApplePay12Colored.name || "apple-pay-12-colored"} - -
{EvoIconApplePay18Colored.name || "apple-pay-18-colored"} - -
{EvoIconApplePay24Colored.name || "apple-pay-24-colored"} - -
{EvoIconApplePay32Colored.name || "apple-pay-32-colored"} - -
{EvoIconArchive16.name || "archive-16"} - -
{EvoIconArchive24.name || "archive-24"} - -
{EvoIconArrowDown12.name || "arrow-down-12"} - -
{EvoIconArrowDown16.name || "arrow-down-16"} - -
{EvoIconArrowDown20.name || "arrow-down-20"} - -
{EvoIconArrowDown24.name || "arrow-down-24"} - -
{EvoIconArrowLeft12.name || "arrow-left-12"} - -
{EvoIconArrowLeft16.name || "arrow-left-16"} - -
{EvoIconArrowLeft20.name || "arrow-left-20"} - -
{EvoIconArrowLeft24.name || "arrow-left-24"} - -
{EvoIconArrowRight12.name || "arrow-right-12"} - -
{EvoIconArrowRight16.name || "arrow-right-16"} - -
{EvoIconArrowRight20.name || "arrow-right-20"} - -
{EvoIconArrowRight24.name || "arrow-right-24"} - -
{EvoIconArrowUp12.name || "arrow-up-12"} - -
{EvoIconArrowUp16.name || "arrow-up-16"} - -
{EvoIconArrowUp20.name || "arrow-up-20"} - -
{EvoIconArrowUp24.name || "arrow-up-24"} - -
{EvoIconArrows3d16.name || "arrows-3d-16"} - -
{EvoIconArrows3d24.name || "arrows-3d-24"} - -
{EvoIconArrows3dFilled64Colored.name || "arrows-3d-filled-64-colored"} - -
{EvoIconArrowsExpand16.name || "arrows-expand-16"} - -
{EvoIconArrowsExpand24.name || "arrows-expand-24"} - -
{EvoIconArticle16.name || "article-16"} - -
{EvoIconArticle24.name || "article-24"} - -
{EvoIconAttention16.name || "attention-16"} - -
{EvoIconAttention24.name || "attention-24"} - -
{EvoIconAttention64.name || "attention-64"} - -
{EvoIconAttentionFilled16.name || "attention-filled-16"} - -
{EvoIconAttentionFilled24.name || "attention-filled-24"} - -
{EvoIconAttentionTriangle16.name || "attention-triangle-16"} - -
{EvoIconAttentionTriangle24.name || "attention-triangle-24"} - -
{EvoIconAttentionTriangleFilled16.name || "attention-triangle-filled-16"} - -
{EvoIconAttentionTriangleFilled24.name || "attention-triangle-filled-24"} - -
{EvoIconAtv16.name || "atv-16"} - -
{EvoIconAtv24.name || "atv-24"} - -
{EvoIconAudioHigh16.name || "audio-high-16"} - -
{EvoIconAudioHigh20.name || "audio-high-20"} - -
{EvoIconAudioHigh24.name || "audio-high-24"} - -
{EvoIconAudioLow16.name || "audio-low-16"} - -
{EvoIconAudioOff16.name || "audio-off-16"} - -
{EvoIconAudioOff20.name || "audio-off-20"} - -
{EvoIconAudioOff24.name || "audio-off-24"} - -
{EvoIconAuthenticityGuarantee16.name || "authenticity-guarantee-16"} - -
{EvoIconAuthenticityGuarantee24.name || "authenticity-guarantee-24"} - -
{EvoIconAuthenticityGuaranteeFilled16.name || "authenticity-guarantee-filled-16"} - -
{EvoIconAuthenticityGuaranteeFilled16Colored.name || "authenticity-guarantee-filled-16-colored"} - -
{EvoIconAuthenticityGuaranteeFilled24.name || "authenticity-guarantee-filled-24"} - -
{EvoIconAuthenticityGuaranteeFilled24Colored.name || "authenticity-guarantee-filled-24-colored"} - -
{EvoIconAutoAdjust16.name || "auto-adjust-16"} - -
{EvoIconAutoAdjust24.name || "auto-adjust-24"} - -
{EvoIconAvatarSignedOut.name || "avatar-signed-out"} - -
{EvoIconBackgroundRemoval16.name || "background-removal-16"} - -
{EvoIconBackgroundRemoval24.name || "background-removal-24"} - -
{EvoIconBancontact12Colored.name || "bancontact-12-colored"} - -
{EvoIconBancontact18Colored.name || "bancontact-18-colored"} - -
{EvoIconBancontact24Colored.name || "bancontact-24-colored"} - -
{EvoIconBancontact32Colored.name || "bancontact-32-colored"} - -
{EvoIconBank16.name || "bank-16"} - -
{EvoIconBank20.name || "bank-20"} - -
{EvoIconBank24.name || "bank-24"} - -
{EvoIconBank64.name || "bank-64"} - -
{EvoIconBankAccount12Colored.name || "bank-account-12-colored"} - -
{EvoIconBankAccount18Colored.name || "bank-account-18-colored"} - -
{EvoIconBankAccount24Colored.name || "bank-account-24-colored"} - -
{EvoIconBankAccount32Colored.name || "bank-account-32-colored"} - -
{EvoIconBankGroupLogo24Colored.name || "bank-group-logo-24-colored"} - -
{EvoIconBankOfAmerica12Colored.name || "bank-of-america-12-colored"} - -
{EvoIconBankOfAmerica18Colored.name || "bank-of-america-18-colored"} - -
{EvoIconBankOfAmerica24Colored.name || "bank-of-america-24-colored"} - -
{EvoIconBankOfAmerica32Colored.name || "bank-of-america-32-colored"} - -
{EvoIconBarChart16.name || "bar-chart-16"} - -
{EvoIconBarChart24.name || "bar-chart-24"} - -
{EvoIconBatteryWaste48.name || "battery-waste-48"} - -
{EvoIconBids12.name || "bids-12"} - -
{EvoIconBids16.name || "bids-16"} - -
{EvoIconBids24.name || "bids-24"} - -
{EvoIconBids64.name || "bids-64"} - -
{EvoIconBoat16.name || "boat-16"} - -
{EvoIconBoat24.name || "boat-24"} - -
{EvoIconBook16.name || "book-16"} - -
{EvoIconBook24.name || "book-24"} - -
{EvoIconBookmark16.name || "bookmark-16"} - -
{EvoIconBookmark24.name || "bookmark-24"} - -
{EvoIconBookmarkFilled16.name || "bookmark-filled-16"} - -
{EvoIconBookmarkFilled24.name || "bookmark-filled-24"} - -
{EvoIconBrandAuthorizedSeller16.name || "brand-authorized-seller-16"} - -
{EvoIconBrandAuthorizedSeller24.name || "brand-authorized-seller-24"} - -
{EvoIconBrightness16.name || "brightness-16"} - -
{EvoIconBrightness20.name || "brightness-20"} - -
{EvoIconBrightness24.name || "brightness-24"} - -
{EvoIconCalendar16.name || "calendar-16"} - -
{EvoIconCalendar24.name || "calendar-24"} - -
{EvoIconCalendar64.name || "calendar-64"} - -
{EvoIconCamera16.name || "camera-16"} - -
{EvoIconCamera24.name || "camera-24"} - -
{EvoIconCamera64.name || "camera-64"} - -
{EvoIconCapitalOne12Colored.name || "capital-one-12-colored"} - -
{EvoIconCapitalOne18Colored.name || "capital-one-18-colored"} - -
{EvoIconCapitalOne24Colored.name || "capital-one-24-colored"} - -
{EvoIconCapitalOne32Colored.name || "capital-one-32-colored"} - -
{EvoIconCar16.name || "car-16"} - -
{EvoIconCar24.name || "car-24"} - -
{EvoIconCarBrake16.name || "car-brake-16"} - -
{EvoIconCarBrake24.name || "car-brake-24"} - -
{EvoIconCardStack64.name || "card-stack-64"} - -
{EvoIconCarnet12Colored.name || "carnet-12-colored"} - -
{EvoIconCarnet18Colored.name || "carnet-18-colored"} - -
{EvoIconCarnet24Colored.name || "carnet-24-colored"} - -
{EvoIconCarnet32Colored.name || "carnet-32-colored"} - -
{EvoIconCarryon24.name || "carryon-24"} - -
{EvoIconCart16.name || "cart-16"} - -
{EvoIconCart20.name || "cart-20"} - -
{EvoIconCart24.name || "cart-24"} - -
{EvoIconCart64.name || "cart-64"} - -
{EvoIconCartAdd16.name || "cart-add-16"} - -
{EvoIconCartAdd20.name || "cart-add-20"} - -
{EvoIconCartAdd24.name || "cart-add-24"} - -
{EvoIconCashapp12Colored.name || "cashapp-12-colored"} - -
{EvoIconCashapp18Colored.name || "cashapp-18-colored"} - -
{EvoIconCashapp24Colored.name || "cashapp-24-colored"} - -
{EvoIconCashapp32Colored.name || "cashapp-32-colored"} - -
{EvoIconCategories16.name || "categories-16"} - -
{EvoIconCategories24.name || "categories-24"} - -
{EvoIconCb12Colored.name || "cb-12-colored"} - -
{EvoIconCb18Colored.name || "cb-18-colored"} - -
{EvoIconCb24Colored.name || "cb-24-colored"} - -
{EvoIconCb32Colored.name || "cb-32-colored"} - -
{EvoIconCcdChargerIncluded.name || "ccd-charger-included"} - -
{EvoIconCcdChargerNotIncluded.name || "ccd-charger-not-included"} - -
{EvoIconCcdTop.name || "ccd-top"} - -
{EvoIconCertifiedRecycled16.name || "certified-recycled-16"} - -
{EvoIconCertifiedRecycled24.name || "certified-recycled-24"} - -
{EvoIconChair16.name || "chair-16"} - -
{EvoIconChair24.name || "chair-24"} - -
{EvoIconChase12Colored.name || "chase-12-colored"} - -
{EvoIconChase18Colored.name || "chase-18-colored"} - -
{EvoIconChase24Colored.name || "chase-24-colored"} - -
{EvoIconChase32Colored.name || "chase-32-colored"} - -
{EvoIconChat16.name || "chat-16"} - -
{EvoIconChat24.name || "chat-24"} - -
{EvoIconChat64.name || "chat-64"} - -
{EvoIconCheckIn24.name || "check-in-24"} - -
{EvoIconCheckboxChecked18.name || "checkbox-checked-18"} - -
{EvoIconCheckboxChecked24.name || "checkbox-checked-24"} - -
{EvoIconCheckboxMixed18.name || "checkbox-mixed-18"} - -
{EvoIconCheckboxMixed24.name || "checkbox-mixed-24"} - -
{EvoIconCheckboxUnchecked18.name || "checkbox-unchecked-18"} - -
{EvoIconCheckboxUnchecked24.name || "checkbox-unchecked-24"} - -
{EvoIconCheckmark24.name || "checkmark-24"} - -
{EvoIconChevronDown12.name || "chevron-down-12"} - -
{EvoIconChevronDown16.name || "chevron-down-16"} - -
{EvoIconChevronDown20.name || "chevron-down-20"} - -
{EvoIconChevronDown24.name || "chevron-down-24"} - -
{EvoIconChevronLeft12.name || "chevron-left-12"} - -
{EvoIconChevronLeft16.name || "chevron-left-16"} - -
{EvoIconChevronLeft20.name || "chevron-left-20"} - -
{EvoIconChevronLeft24.name || "chevron-left-24"} - -
{EvoIconChevronRight12.name || "chevron-right-12"} - -
{EvoIconChevronRight16.name || "chevron-right-16"} - -
{EvoIconChevronRight20.name || "chevron-right-20"} - -
{EvoIconChevronRight24.name || "chevron-right-24"} - -
{EvoIconChevronUp12.name || "chevron-up-12"} - -
{EvoIconChevronUp16.name || "chevron-up-16"} - -
{EvoIconChevronUp20.name || "chevron-up-20"} - -
{EvoIconChevronUp24.name || "chevron-up-24"} - -
{EvoIconChineseCoin16.name || "chinese-coin-16"} - -
{EvoIconChineseCoin24.name || "chinese-coin-24"} - -
{EvoIconCiti12Colored.name || "citi-12-colored"} - -
{EvoIconCiti18Colored.name || "citi-18-colored"} - -
{EvoIconCiti24Colored.name || "citi-24-colored"} - -
{EvoIconCiti32Colored.name || "citi-32-colored"} - -
{EvoIconClear16.name || "clear-16"} - -
{EvoIconClear20.name || "clear-20"} - -
{EvoIconClear24.name || "clear-24"} - -
{EvoIconClickToCall16.name || "click-to-call-16"} - -
{EvoIconClickToCall24.name || "click-to-call-24"} - -
{EvoIconClock12.name || "clock-12"} - -
{EvoIconClock16.name || "clock-16"} - -
{EvoIconClock24.name || "clock-24"} - -
{EvoIconClock64.name || "clock-64"} - -
{EvoIconClockFast16.name || "clock-fast-16"} - -
{EvoIconClockFast24.name || "clock-fast-24"} - -
{EvoIconClose12.name || "close-12"} - -
{EvoIconClose16.name || "close-16"} - -
{EvoIconClose20.name || "close-20"} - -
{EvoIconClose24.name || "close-24"} - -
{EvoIconClosedCaption16.name || "closed-caption-16"} - -
{EvoIconClosedCaption24.name || "closed-caption-24"} - -
{EvoIconClosedCaptionFilled16.name || "closed-caption-filled-16"} - -
{EvoIconClosedCaptionFilled24.name || "closed-caption-filled-24"} - -
{EvoIconCoin24.name || "coin-24"} - -
{EvoIconCoinBattery48.name || "coin-battery-48"} - -
{EvoIconCollections16.name || "collections-16"} - -
{EvoIconCollections24.name || "collections-24"} - -
{EvoIconCondensedGrid24.name || "condensed-grid-24"} - -
{EvoIconCondensedGridFilled24.name || "condensed-grid-filled-24"} - -
{EvoIconConfirmation16.name || "confirmation-16"} - -
{EvoIconConfirmation24.name || "confirmation-24"} - -
{EvoIconConfirmation64.name || "confirmation-64"} - -
{EvoIconConfirmationFilled12.name || "confirmation-filled-12"} - -
{EvoIconConfirmationFilled16.name || "confirmation-filled-16"} - -
{EvoIconConfirmationFilled24.name || "confirmation-filled-24"} - -
{EvoIconContract16.name || "contract-16"} - -
{EvoIconContrast24.name || "contrast-24"} - -
{EvoIconCopy16.name || "copy-16"} - -
{EvoIconCopy24.name || "copy-24"} - -
{EvoIconCoupon16.name || "coupon-16"} - -
{EvoIconCoupon20.name || "coupon-20"} - -
{EvoIconCoupon24.name || "coupon-24"} - -
{EvoIconCreditCard16.name || "credit-card-16"} - -
{EvoIconCreditCard20.name || "credit-card-20"} - -
{EvoIconCreditCard24.name || "credit-card-24"} - -
{EvoIconCreditCard64.name || "credit-card-64"} - -
{EvoIconCreditCardCvvBack20.name || "credit-card-cvv-back-20"} - -
{EvoIconCreditCardCvvBack24.name || "credit-card-cvv-back-24"} - -
{EvoIconCreditCardCvvFront20.name || "credit-card-cvv-front-20"} - -
{EvoIconCreditCardCvvFront24.name || "credit-card-cvv-front-24"} - -
{EvoIconCrop24.name || "crop-24"} - -
{EvoIconCustomize16.name || "customize-16"} - -
{EvoIconCustomize24.name || "customize-24"} - -
{EvoIconDelete16.name || "delete-16"} - -
{EvoIconDelete20.name || "delete-20"} - -
{EvoIconDelete24.name || "delete-24"} - -
{EvoIconDensityCompact16.name || "density-compact-16"} - -
{EvoIconDensityCompact24.name || "density-compact-24"} - -
{EvoIconDensityDefault16.name || "density-default-16"} - -
{EvoIconDensityDefault24.name || "density-default-24"} - -
{EvoIconDensityRelaxed16.name || "density-relaxed-16"} - -
{EvoIconDensityRelaxed24.name || "density-relaxed-24"} - -
{EvoIconDensityRowCompact16.name || "density-row-compact-16"} - -
{EvoIconDensityRowCompact24.name || "density-row-compact-24"} - -
{EvoIconDensityRowRelaxed16.name || "density-row-relaxed-16"} - -
{EvoIconDensityRowRelaxed24.name || "density-row-relaxed-24"} - -
{EvoIconDesktop16.name || "desktop-16"} - -
{EvoIconDesktop20.name || "desktop-20"} - -
{EvoIconDesktop24.name || "desktop-24"} - -
{EvoIconDiamond16.name || "diamond-16"} - -
{EvoIconDiamond24.name || "diamond-24"} - -
{EvoIconDiners12Colored.name || "diners-12-colored"} - -
{EvoIconDiners18Colored.name || "diners-18-colored"} - -
{EvoIconDiners24Colored.name || "diners-24-colored"} - -
{EvoIconDiners32Colored.name || "diners-32-colored"} - -
{EvoIconDirectDebit12Colored.name || "direct-debit-12-colored"} - -
{EvoIconDirectDebit18Colored.name || "direct-debit-18-colored"} - -
{EvoIconDirectDebit24Colored.name || "direct-debit-24-colored"} - -
{EvoIconDirectDebit32Colored.name || "direct-debit-32-colored"} - -
{EvoIconDirectFromBrand16.name || "direct-from-brand-16"} - -
{EvoIconDirectFromBrand24.name || "direct-from-brand-24"} - -
{EvoIconDiscord24.name || "discord-24"} - -
{EvoIconDiscount16.name || "discount-16"} - -
{EvoIconDiscount24.name || "discount-24"} - -
{EvoIconDiscountAuto16.name || "discount-auto-16"} - -
{EvoIconDiscountAuto24.name || "discount-auto-24"} - -
{EvoIconDiscover12Colored.name || "discover-12-colored"} - -
{EvoIconDiscover18Colored.name || "discover-18-colored"} - -
{EvoIconDiscover24Colored.name || "discover-24-colored"} - -
{EvoIconDiscover32Colored.name || "discover-32-colored"} - -
{EvoIconDollar16.name || "dollar-16"} - -
{EvoIconDollar24.name || "dollar-24"} - -
{EvoIconDollarOff24.name || "dollar-off-24"} - -
{EvoIconDownload16.name || "download-16"} - -
{EvoIconDownload20.name || "download-20"} - -
{EvoIconDownload24.name || "download-24"} - -
{EvoIconDragDrop16.name || "drag-drop-16"} - -
{EvoIconDragDrop24.name || "drag-drop-24"} - -
{EvoIconEbayBalance12Colored.name || "ebay-balance-12-colored"} - -
{EvoIconEbayBalance18Colored.name || "ebay-balance-18-colored"} - -
{EvoIconEbayBalance24Colored.name || "ebay-balance-24-colored"} - -
{EvoIconEbayBalance32Colored.name || "ebay-balance-32-colored"} - -
{EvoIconEbayBucksLogo16Colored.name || "ebay-bucks-logo-16-colored"} - -
{EvoIconEbayCreditCardBlack12Colored.name || "ebay-credit-card-black-12-colored"} - -
{EvoIconEbayCreditCardBlack18Colored.name || "ebay-credit-card-black-18-colored"} - -
{EvoIconEbayCreditCardBlack24Colored.name || "ebay-credit-card-black-24-colored"} - -
{EvoIconEbayCreditCardBlack32Colored.name || "ebay-credit-card-black-32-colored"} - -
{EvoIconEbayCreditCardPurple12Colored.name || "ebay-credit-card-purple-12-colored"} - -
{EvoIconEbayCreditCardPurple18Colored.name || "ebay-credit-card-purple-18-colored"} - -
{EvoIconEbayCreditCardPurple24Colored.name || "ebay-credit-card-purple-24-colored"} - -
{EvoIconEbayCreditCardPurple32Colored.name || "ebay-credit-card-purple-32-colored"} - -
{EvoIconEbayCreditCardWhite12Colored.name || "ebay-credit-card-white-12-colored"} - -
{EvoIconEbayCreditCardWhite18Colored.name || "ebay-credit-card-white-18-colored"} - -
{EvoIconEbayCreditCardWhite24Colored.name || "ebay-credit-card-white-24-colored"} - -
{EvoIconEbayCreditCardWhite32Colored.name || "ebay-credit-card-white-32-colored"} - -
{EvoIconEbayForCharity16.name || "ebay-for-charity-16"} - -
{EvoIconEbayForCharity24.name || "ebay-for-charity-24"} - -
{EvoIconEbayInternationalShipping16.name || "ebay-international-shipping-16"} - -
{EvoIconEbayInternationalShipping24.name || "ebay-international-shipping-24"} - -
{EvoIconEbayInternationalShipping64.name || "ebay-international-shipping-64"} - -
{EvoIconEbayLive16.name || "ebay-live-16"} - -
{EvoIconEbayLive24.name || "ebay-live-24"} - -
{EvoIconEbayLogo16Colored.name || "ebay-logo-16-colored"} - -
{EvoIconEbayMastercard12Colored.name || "ebay-mastercard-12-colored"} - -
{EvoIconEbayMastercard18Colored.name || "ebay-mastercard-18-colored"} - -
{EvoIconEbayMastercard24Colored.name || "ebay-mastercard-24-colored"} - -
{EvoIconEbayMastercard32Colored.name || "ebay-mastercard-32-colored"} - -
{EvoIconEbayMoneyBackGuaranteeLogo16Colored.name || "ebay-money-back-guarantee-logo-16-colored"} - -
{EvoIconEbayPlus16.name || "ebay-plus-16"} - -
{EvoIconEbayPlus24.name || "ebay-plus-24"} - -
{EvoIconEbayPlusLogo16Colored.name || "ebay-plus-logo-16-colored"} - -
{EvoIconEbayPlusLogoDark16Colored.name || "ebay-plus-logo-dark-16-colored"} - -
{EvoIconEbayPreloved16.name || "ebay-preloved-16"} - -
{EvoIconEbayPreloved24.name || "ebay-preloved-24"} - -
{EvoIconEbayRefurbished16.name || "ebay-refurbished-16"} - -
{EvoIconEbayRefurbished24.name || "ebay-refurbished-24"} - -
{EvoIconEekArrow.name || "eek-arrow"} - -
{EvoIconEekRangeArrow.name || "eek-range-arrow"} - -
{EvoIconEftpos12Colored.name || "eftpos-12-colored"} - -
{EvoIconEftpos18Colored.name || "eftpos-18-colored"} - -
{EvoIconEftpos24Colored.name || "eftpos-24-colored"} - -
{EvoIconEftpos32Colored.name || "eftpos-32-colored"} - -
{EvoIconElo12Colored.name || "elo-12-colored"} - -
{EvoIconElo18Colored.name || "elo-18-colored"} - -
{EvoIconElo24Colored.name || "elo-24-colored"} - -
{EvoIconElo32Colored.name || "elo-32-colored"} - -
{EvoIconEscrowCard12Colored.name || "escrow-card-12-colored"} - -
{EvoIconEscrowCard18Colored.name || "escrow-card-18-colored"} - -
{EvoIconEscrowCard24Colored.name || "escrow-card-24-colored"} - -
{EvoIconEscrowCard32Colored.name || "escrow-card-32-colored"} - -
{EvoIconEuro16.name || "euro-16"} - -
{EvoIconEuro24.name || "euro-24"} - -
{EvoIconEuropeanConformity48.name || "european-conformity-48"} - -
{EvoIconExclude16.name || "exclude-16"} - -
{EvoIconExclude24.name || "exclude-24"} - -
{EvoIconExclude64.name || "exclude-64"} - -
{EvoIconExpand16.name || "expand-16"} - -
{EvoIconExplore16.name || "explore-16"} - -
{EvoIconExplore24.name || "explore-24"} - -
{EvoIconExternalLink16.name || "external-link-16"} - -
{EvoIconExternalLink20.name || "external-link-20"} - -
{EvoIconExternalLink24.name || "external-link-24"} - -
{EvoIconEye16.name || "eye-16"} - -
{EvoIconEye24.name || "eye-24"} - -
{EvoIconFaceHappiest24.name || "face-happiest-24"} - -
{EvoIconFaceHappy16.name || "face-happy-16"} - -
{EvoIconFaceHappy24.name || "face-happy-24"} - -
{EvoIconFaceNeutral24.name || "face-neutral-24"} - -
{EvoIconFaceSad24.name || "face-sad-24"} - -
{EvoIconFaceSaddest24.name || "face-saddest-24"} - -
{EvoIconFacebook24.name || "facebook-24"} - -
{EvoIconFacebookMessenger24.name || "facebook-messenger-24"} - -
{EvoIconFallLeaf16.name || "fall-leaf-16"} - -
{EvoIconFallLeaf24.name || "fall-leaf-24"} - -
{EvoIconFastForward16.name || "fast-forward-16"} - -
{EvoIconFeedback16.name || "feedback-16"} - -
{EvoIconFeedback20.name || "feedback-20"} - -
{EvoIconFeedback24.name || "feedback-24"} - -
{EvoIconFeedbackError16.name || "feedback-error-16"} - -
{EvoIconFeedbackError24.name || "feedback-error-24"} - -
{EvoIconFeedbackNegative16.name || "feedback-negative-16"} - -
{EvoIconFeedbackNeutral16.name || "feedback-neutral-16"} - -
{EvoIconFeedbackPositive16.name || "feedback-positive-16"} - -
{EvoIconFeedbackReceived16.name || "feedback-received-16"} - -
{EvoIconFeedbackReceived24.name || "feedback-received-24"} - -
{EvoIconFile16.name || "file-16"} - -
{EvoIconFile24.name || "file-24"} - -
{EvoIconFilter16.name || "filter-16"} - -
{EvoIconFilter24.name || "filter-24"} - -
{EvoIconFingerprint16.name || "fingerprint-16"} - -
{EvoIconFingerprint24.name || "fingerprint-24"} - -
{EvoIconFingerprint64.name || "fingerprint-64"} - -
{EvoIconFlag16.name || "flag-16"} - -
{EvoIconFlag24.name || "flag-24"} - -
{EvoIconFlagFilled16.name || "flag-filled-16"} - -
{EvoIconFlagFilled24.name || "flag-filled-24"} - -
{EvoIconFlash24.name || "flash-24"} - -
{EvoIconFlashAuto24.name || "flash-auto-24"} - -
{EvoIconFlashOff24.name || "flash-off-24"} - -
{EvoIconFolder16.name || "folder-16"} - -
{EvoIconFolder24.name || "folder-24"} - -
{EvoIconFolderAdd16.name || "folder-add-16"} - -
{EvoIconFolderAdd24.name || "folder-add-24"} - -
{EvoIconForklift16.name || "forklift-16"} - -
{EvoIconForklift24.name || "forklift-24"} - -
{EvoIconFranc16.name || "franc-16"} - -
{EvoIconFranc24.name || "franc-24"} - -
{EvoIconFreeWarranty16.name || "free-warranty-16"} - -
{EvoIconFreeWarranty24.name || "free-warranty-24"} - -
{EvoIconFullView16.name || "full-view-16"} - -
{EvoIconFullView24.name || "full-view-24"} - -
{EvoIconFullViewFilled16.name || "full-view-filled-16"} - -
{EvoIconFullViewFilled24.name || "full-view-filled-24"} - -
{EvoIconGallery16.name || "gallery-16"} - -
{EvoIconGallery24.name || "gallery-24"} - -
{EvoIconGeneralCard12Colored.name || "general-card-12-colored"} - -
{EvoIconGeneralCard18Colored.name || "general-card-18-colored"} - -
{EvoIconGeneralCard24Colored.name || "general-card-24-colored"} - -
{EvoIconGeneralCard32Colored.name || "general-card-32-colored"} - -
{EvoIconGenericCard12Colored.name || "generic-card-12-colored"} - -
{EvoIconGenericCard18Colored.name || "generic-card-18-colored"} - -
{EvoIconGenericCard24Colored.name || "generic-card-24-colored"} - -
{EvoIconGenericCard32Colored.name || "generic-card-32-colored"} - -
{EvoIconGift16.name || "gift-16"} - -
{EvoIconGift20.name || "gift-20"} - -
{EvoIconGift24.name || "gift-24"} - -
{EvoIconGift64.name || "gift-64"} - -
{EvoIconGiftCard12Colored.name || "gift-card-12-colored"} - -
{EvoIconGiftCard18Colored.name || "gift-card-18-colored"} - -
{EvoIconGiftCard24Colored.name || "gift-card-24-colored"} - -
{EvoIconGiftCard32Colored.name || "gift-card-32-colored"} - -
{EvoIconGirocard12Colored.name || "girocard-12-colored"} - -
{EvoIconGirocard18Colored.name || "girocard-18-colored"} - -
{EvoIconGirocard24Colored.name || "girocard-24-colored"} - -
{EvoIconGirocard32Colored.name || "girocard-32-colored"} - -
{EvoIconGithub24.name || "github-24"} - -
{EvoIconGlasses24.name || "glasses-24"} - -
{EvoIconGlasses64.name || "glasses-64"} - -
{EvoIconGoogle24.name || "google-24"} - -
{EvoIconGooglePay12Colored.name || "google-pay-12-colored"} - -
{EvoIconGooglePay18Colored.name || "google-pay-18-colored"} - -
{EvoIconGooglePay24Colored.name || "google-pay-24-colored"} - -
{EvoIconGooglePay32Colored.name || "google-pay-32-colored"} - -
{EvoIconGraph16.name || "graph-16"} - -
{EvoIconGraph24.name || "graph-24"} - -
{EvoIconGraph64.name || "graph-64"} - -
{EvoIconGraphDynamic16.name || "graph-dynamic-16"} - -
{EvoIconGraphDynamic24.name || "graph-dynamic-24"} - -
{EvoIconGridView16.name || "grid-view-16"} - -
{EvoIconGridView24.name || "grid-view-24"} - -
{EvoIconGridViewFilled16.name || "grid-view-filled-16"} - -
{EvoIconGridViewFilled24.name || "grid-view-filled-24"} - -
{EvoIconGuaranteedFitFilled16.name || "guaranteed-fit-filled-16"} - -
{EvoIconGuaranteedFitFilled24.name || "guaranteed-fit-filled-24"} - -
{EvoIconHandSwipe40.name || "hand-swipe-40"} - -
{EvoIconHandbag16.name || "handbag-16"} - -
{EvoIconHandbag24.name || "handbag-24"} - -
{EvoIconHanger16.name || "hanger-16"} - -
{EvoIconHanger24.name || "hanger-24"} - -
{EvoIconHeadlight16.name || "headlight-16"} - -
{EvoIconHeadlight24.name || "headlight-24"} - -
{EvoIconHeadphone16.name || "headphone-16"} - -
{EvoIconHeadphone24.name || "headphone-24"} - -
{EvoIconHeart16.name || "heart-16"} - -
{EvoIconHeart20.name || "heart-20"} - -
{EvoIconHeart24.name || "heart-24"} - -
{EvoIconHeartFilled16.name || "heart-filled-16"} - -
{EvoIconHeartFilled20.name || "heart-filled-20"} - -
{EvoIconHeartFilled24.name || "heart-filled-24"} - -
{EvoIconHelp16.name || "help-16"} - -
{EvoIconHelp20.name || "help-20"} - -
{EvoIconHelp24.name || "help-24"} - -
{EvoIconHelpOutline16.name || "help-outline-16"} - -
{EvoIconHelpOutline20.name || "help-outline-20"} - -
{EvoIconHelpOutline24.name || "help-outline-24"} - -
{EvoIconHide16.name || "hide-16"} - -
{EvoIconHide24.name || "hide-24"} - -
{EvoIconHistory16.name || "history-16"} - -
{EvoIconHistory24.name || "history-24"} - -
{EvoIconHistory64.name || "history-64"} - -
{EvoIconHome16.name || "home-16"} - -
{EvoIconHome20.name || "home-20"} - -
{EvoIconHome24.name || "home-24"} - -
{EvoIconHomeFilled24.name || "home-filled-24"} - -
{EvoIconImage16.name || "image-16"} - -
{EvoIconImage24.name || "image-24"} - -
{EvoIconImage64.name || "image-64"} - -
{EvoIconInbox16.name || "inbox-16"} - -
{EvoIconInbox24.name || "inbox-24"} - -
{EvoIconInformation12.name || "information-12"} - -
{EvoIconInformation16.name || "information-16"} - -
{EvoIconInformation20.name || "information-20"} - -
{EvoIconInformation24.name || "information-24"} - -
{EvoIconInformationFilled16.name || "information-filled-16"} - -
{EvoIconInformationFilled20.name || "information-filled-20"} - -
{EvoIconInformationFilled24.name || "information-filled-24"} - -
{EvoIconInspect16.name || "inspect-16"} - -
{EvoIconInspect24.name || "inspect-24"} - -
{EvoIconInspect64.name || "inspect-64"} - -
{EvoIconInstagram24.name || "instagram-24"} - -
{EvoIconInterac12Colored.name || "interac-12-colored"} - -
{EvoIconInterac18Colored.name || "interac-18-colored"} - -
{EvoIconInterac24Colored.name || "interac-24-colored"} - -
{EvoIconInterac32Colored.name || "interac-32-colored"} - -
{EvoIconItemList16.name || "item-list-16"} - -
{EvoIconItemList20.name || "item-list-20"} - -
{EvoIconItemList24.name || "item-list-24"} - -
{EvoIconJcb12Colored.name || "jcb-12-colored"} - -
{EvoIconJcb18Colored.name || "jcb-18-colored"} - -
{EvoIconJcb24Colored.name || "jcb-24-colored"} - -
{EvoIconJcb32Colored.name || "jcb-32-colored"} - -
{EvoIconJetSki16.name || "jet-ski-16"} - -
{EvoIconJetSki24.name || "jet-ski-24"} - -
{EvoIconKakaoPay12Colored.name || "kakao-pay-12-colored"} - -
{EvoIconKakaoPay18Colored.name || "kakao-pay-18-colored"} - -
{EvoIconKakaoPay24Colored.name || "kakao-pay-24-colored"} - -
{EvoIconKakaoPay32Colored.name || "kakao-pay-32-colored"} - -
{EvoIconKey16.name || "key-16"} - -
{EvoIconKey24.name || "key-24"} - -
{EvoIconKeyboard16.name || "keyboard-16"} - -
{EvoIconKeyboard24.name || "keyboard-24"} - -
{EvoIconKlarnaBlack12Colored.name || "klarna-black-12-colored"} - -
{EvoIconKlarnaBlack18Colored.name || "klarna-black-18-colored"} - -
{EvoIconKlarnaBlack24Colored.name || "klarna-black-24-colored"} - -
{EvoIconKlarnaBlack32Colored.name || "klarna-black-32-colored"} - -
{EvoIconKlarnaPink12Colored.name || "klarna-pink-12-colored"} - -
{EvoIconKlarnaPink18Colored.name || "klarna-pink-18-colored"} - -
{EvoIconKlarnaPink24Colored.name || "klarna-pink-24-colored"} - -
{EvoIconKlarnaPink32Colored.name || "klarna-pink-32-colored"} - -
{EvoIconKlarnaWhite12Colored.name || "klarna-white-12-colored"} - -
{EvoIconKlarnaWhite18Colored.name || "klarna-white-18-colored"} - -
{EvoIconKlarnaWhite24Colored.name || "klarna-white-24-colored"} - -
{EvoIconKlarnaWhite32Colored.name || "klarna-white-32-colored"} - -
{EvoIconKrona16.name || "krona-16"} - -
{EvoIconKrona24.name || "krona-24"} - -
{EvoIconLamp16.name || "lamp-16"} - -
{EvoIconLamp24.name || "lamp-24"} - -
{EvoIconLargeBox16.name || "large-box-16"} - -
{EvoIconLargeBox24.name || "large-box-24"} - -
{EvoIconLegacyAuthenticityGuarantee48Colored.name || "legacy-authenticity-guarantee-48-colored"} - -
{EvoIconLegacyClickToCall48Colored.name || "legacy-click-to-call-48-colored"} - -
{EvoIconLegacyEscrow48Colored.name || "legacy-escrow-48-colored"} - -
{EvoIconLegacyFreeWarranty48Colored.name || "legacy-free-warranty-48-colored"} - -
{EvoIconLegacyMoneyBackGuaranteeChf48Colored.name || "legacy-money-back-guarantee-chf-48-colored"} - -
{EvoIconLegacyMoneyBackGuaranteeEu48Colored.name || "legacy-money-back-guarantee-eu-48-colored"} - -
{EvoIconLegacyMoneyBackGuaranteeUk48Colored.name || "legacy-money-back-guarantee-uk-48-colored"} - -
{EvoIconLegacyMoneyBackGuaranteeUs48Colored.name || "legacy-money-back-guarantee-us-48-colored"} - -
{EvoIconLegacyMoneyBackGuaranteeZl48Colored.name || "legacy-money-back-guarantee-zl-48-colored"} - -
{EvoIconLegacyTopRatedSeller48Colored.name || "legacy-top-rated-seller-48-colored"} - -
{EvoIconLightbulb16.name || "lightbulb-16"} - -
{EvoIconLightbulb24.name || "lightbulb-24"} - -
{EvoIconLightningBolt16.name || "lightning-bolt-16"} - -
{EvoIconLightningBolt24.name || "lightning-bolt-24"} - -
{EvoIconLightningBoltFilled12.name || "lightning-bolt-filled-12"} - -
{EvoIconLightningBoltFilled16.name || "lightning-bolt-filled-16"} - -
{EvoIconLightningBoltFilled24.name || "lightning-bolt-filled-24"} - -
{EvoIconLink16.name || "link-16"} - -
{EvoIconLink20.name || "link-20"} - -
{EvoIconLink24.name || "link-24"} - -
{EvoIconLinkedin24.name || "linkedin-24"} - -
{EvoIconListView16.name || "list-view-16"} - -
{EvoIconListView24.name || "list-view-24"} - -
{EvoIconListViewFilled16.name || "list-view-filled-16"} - -
{EvoIconListViewFilled24.name || "list-view-filled-24"} - -
{EvoIconLiveBag16.name || "live-bag-16"} - -
{EvoIconLiveBag20.name || "live-bag-20"} - -
{EvoIconLiveBag24.name || "live-bag-24"} - -
{EvoIconLiveBagFilled24.name || "live-bag-filled-24"} - -
{EvoIconLiveBagPlayFilled16Colored.name || "live-bag-play-filled-16-colored"} - -
{EvoIconLiveBagPlayFilled24Colored.name || "live-bag-play-filled-24-colored"} - -
{EvoIconLiveBagPlayFilled64Colored.name || "live-bag-play-filled-64-colored"} - -
{EvoIconLiveBagThin16.name || "live-bag-thin-16"} - -
{EvoIconLiveBroadcast16.name || "live-broadcast-16"} - -
{EvoIconLiveBroadcast20.name || "live-broadcast-20"} - -
{EvoIconLiveBroadcast24.name || "live-broadcast-24"} - -
{EvoIconLiveBroadcastFilled24.name || "live-broadcast-filled-24"} - -
{EvoIconLiveBroadcastThin16.name || "live-broadcast-thin-16"} - -
{EvoIconLiveEye16.name || "live-eye-16"} - -
{EvoIconLiveEye24.name || "live-eye-24"} - -
{EvoIconLocation16.name || "location-16"} - -
{EvoIconLocation24.name || "location-24"} - -
{EvoIconLocation64.name || "location-64"} - -
{EvoIconLocationArrow16.name || "location-arrow-16"} - -
{EvoIconLocationArrow24.name || "location-arrow-24"} - -
{EvoIconLock16.name || "lock-16"} - -
{EvoIconLock24.name || "lock-24"} - -
{EvoIconLockFilled16.name || "lock-filled-16"} - -
{EvoIconLockFilled20.name || "lock-filled-20"} - -
{EvoIconLockFilled24.name || "lock-filled-24"} - -
{EvoIconLocker16.name || "locker-16"} - -
{EvoIconLocker24.name || "locker-24"} - -
{EvoIconLocker64.name || "locker-64"} - -
{EvoIconMaestro12Colored.name || "maestro-12-colored"} - -
{EvoIconMaestro18Colored.name || "maestro-18-colored"} - -
{EvoIconMaestro24Colored.name || "maestro-24-colored"} - -
{EvoIconMaestro32Colored.name || "maestro-32-colored"} - -
{EvoIconMail16.name || "mail-16"} - -
{EvoIconMail20.name || "mail-20"} - -
{EvoIconMail24.name || "mail-24"} - -
{EvoIconMail64.name || "mail-64"} - -
{EvoIconMailMove16.name || "mail-move-16"} - -
{EvoIconMailMove24.name || "mail-move-24"} - -
{EvoIconMailOpen16.name || "mail-open-16"} - -
{EvoIconMailOpen24.name || "mail-open-24"} - -
{EvoIconMailUnread16.name || "mail-unread-16"} - -
{EvoIconMailUnread24.name || "mail-unread-24"} - -
{EvoIconMap16.name || "map-16"} - -
{EvoIconMap20.name || "map-20"} - -
{EvoIconMap24.name || "map-24"} - -
{EvoIconMarkdown16.name || "markdown-16"} - -
{EvoIconMarkdown20.name || "markdown-20"} - -
{EvoIconMarkdown24.name || "markdown-24"} - -
{EvoIconMasonryView16.name || "masonry-view-16"} - -
{EvoIconMasonryView24.name || "masonry-view-24"} - -
{EvoIconMasonryViewFilled16.name || "masonry-view-filled-16"} - -
{EvoIconMasonryViewFilled24.name || "masonry-view-filled-24"} - -
{EvoIconMastercard12Colored.name || "mastercard-12-colored"} - -
{EvoIconMastercard18Colored.name || "mastercard-18-colored"} - -
{EvoIconMastercard24Colored.name || "mastercard-24-colored"} - -
{EvoIconMastercard32Colored.name || "mastercard-32-colored"} - -
{EvoIconMediumBox16.name || "medium-box-16"} - -
{EvoIconMediumBox24.name || "medium-box-24"} - -
{EvoIconMegaphone16.name || "megaphone-16"} - -
{EvoIconMegaphone24.name || "megaphone-24"} - -
{EvoIconMenu16.name || "menu-16"} - -
{EvoIconMenu20.name || "menu-20"} - -
{EvoIconMenu24.name || "menu-24"} - -
{EvoIconMercadoPago12Colored.name || "mercado-pago-12-colored"} - -
{EvoIconMercadoPago18Colored.name || "mercado-pago-18-colored"} - -
{EvoIconMercadoPago24Colored.name || "mercado-pago-24-colored"} - -
{EvoIconMercadoPago32Colored.name || "mercado-pago-32-colored"} - -
{EvoIconMicrophone16.name || "microphone-16"} - -
{EvoIconMicrophone24.name || "microphone-24"} - -
{EvoIconMobile16.name || "mobile-16"} - -
{EvoIconMobile20.name || "mobile-20"} - -
{EvoIconMobile24.name || "mobile-24"} - -
{EvoIconMobileSignal24.name || "mobile-signal-24"} - -
{EvoIconMoneyBackGuarantee16.name || "money-back-guarantee-16"} - -
{EvoIconMoneyBackGuarantee24.name || "money-back-guarantee-24"} - -
{EvoIconMoneyBackGuaranteeFilled16.name || "money-back-guarantee-filled-16"} - -
{EvoIconMoneyBackGuaranteeFilled16Colored.name || "money-back-guarantee-filled-16-colored"} - -
{EvoIconMoneyBackGuaranteeFilled24.name || "money-back-guarantee-filled-24"} - -
{EvoIconMoneyBackGuaranteeFilled24Colored.name || "money-back-guarantee-filled-24-colored"} - -
{EvoIconMoneyStack16.name || "money-stack-16"} - -
{EvoIconMoneyStack20.name || "money-stack-20"} - -
{EvoIconMoneyStack24.name || "money-stack-24"} - -
{EvoIconMoneyStackBlue12Colored.name || "money-stack-blue-12-colored"} - -
{EvoIconMoneyStackBlue18Colored.name || "money-stack-blue-18-colored"} - -
{EvoIconMoneyStackBlue24Colored.name || "money-stack-blue-24-colored"} - -
{EvoIconMoneyStackBlue32Colored.name || "money-stack-blue-32-colored"} - -
{EvoIconMonthlyInvoice12Colored.name || "monthly-invoice-12-colored"} - -
{EvoIconMonthlyInvoice18Colored.name || "monthly-invoice-18-colored"} - -
{EvoIconMonthlyInvoice24Colored.name || "monthly-invoice-24-colored"} - -
{EvoIconMonthlyInvoice32Colored.name || "monthly-invoice-32-colored"} - -
{EvoIconMoon16.name || "moon-16"} - -
{EvoIconMoon20.name || "moon-20"} - -
{EvoIconMoon24.name || "moon-24"} - -
{EvoIconMotorcycle16.name || "motorcycle-16"} - -
{EvoIconMotorcycle24.name || "motorcycle-24"} - -
{EvoIconMountain16.name || "mountain-16"} - -
{EvoIconMountain24.name || "mountain-24"} - -
{EvoIconMove16.name || "move-16"} - -
{EvoIconMove24.name || "move-24"} - -
{EvoIconNectarLogo24Colored.name || "nectar-logo-24-colored"} - -
{EvoIconNegativeFilled16.name || "negative-filled-16"} - -
{EvoIconNegativeFilled24.name || "negative-filled-24"} - -
{EvoIconNeutral16.name || "neutral-16"} - -
{EvoIconNeutral24.name || "neutral-24"} - -
{EvoIconNfc16.name || "nfc-16"} - -
{EvoIconNfc24.name || "nfc-24"} - -
{EvoIconNfcCard12Colored.name || "nfc-card-12-colored"} - -
{EvoIconNfcCard18Colored.name || "nfc-card-18-colored"} - -
{EvoIconNfcCard24Colored.name || "nfc-card-24-colored"} - -
{EvoIconNfcCard32Colored.name || "nfc-card-32-colored"} - -
{EvoIconNoChildrenZeroThree48.name || "no-children-zero-three-48"} - -
{EvoIconNote12.name || "note-12"} - -
{EvoIconNote16.name || "note-16"} - -
{EvoIconNote24.name || "note-24"} - -
{EvoIconNotification16.name || "notification-16"} - -
{EvoIconNotification20.name || "notification-20"} - -
{EvoIconNotification24.name || "notification-24"} - -
{EvoIconNotification64.name || "notification-64"} - -
{EvoIconNotificationFilled16.name || "notification-filled-16"} - -
{EvoIconNotificationFilled20.name || "notification-filled-20"} - -
{EvoIconNotificationFilled24.name || "notification-filled-24"} - -
{EvoIconOutOfReach48.name || "out-of-reach-48"} - -
{EvoIconOverflowHorizontal16.name || "overflow-horizontal-16"} - -
{EvoIconOverflowHorizontal20.name || "overflow-horizontal-20"} - -
{EvoIconOverflowHorizontal24.name || "overflow-horizontal-24"} - -
{EvoIconOverflowVertical16.name || "overflow-vertical-16"} - -
{EvoIconOverflowVertical20.name || "overflow-vertical-20"} - -
{EvoIconOverflowVertical24.name || "overflow-vertical-24"} - -
{EvoIconPackage16.name || "package-16"} - -
{EvoIconPackage24.name || "package-24"} - -
{EvoIconPackage64.name || "package-64"} - -
{EvoIconPackageError24.name || "package-error-24"} - -
{EvoIconPanel16.name || "panel-16"} - -
{EvoIconPanel20.name || "panel-20"} - -
{EvoIconPanel24.name || "panel-24"} - -
{EvoIconPanelClose16.name || "panel-close-16"} - -
{EvoIconPanelClose20.name || "panel-close-20"} - -
{EvoIconPanelClose24.name || "panel-close-24"} - -
{EvoIconPanelCloseVertical16.name || "panel-close-vertical-16"} - -
{EvoIconPanelCloseVertical20.name || "panel-close-vertical-20"} - -
{EvoIconPanelCloseVertical24.name || "panel-close-vertical-24"} - -
{EvoIconPanelOpen16.name || "panel-open-16"} - -
{EvoIconPanelOpen20.name || "panel-open-20"} - -
{EvoIconPanelOpen24.name || "panel-open-24"} - -
{EvoIconPanelOpenVertical16.name || "panel-open-vertical-16"} - -
{EvoIconPanelOpenVertical20.name || "panel-open-vertical-20"} - -
{EvoIconPanelOpenVertical24.name || "panel-open-vertical-24"} - -
{EvoIconPasskey16.name || "passkey-16"} - -
{EvoIconPasskey24.name || "passkey-24"} - -
{EvoIconPasskey64.name || "passkey-64"} - -
{EvoIconPause16.name || "pause-16"} - -
{EvoIconPause20.name || "pause-20"} - -
{EvoIconPause24.name || "pause-24"} - -
{EvoIconPauseFilled64Colored.name || "pause-filled-64-colored"} - -
{EvoIconPayByBank12Colored.name || "pay-by-bank-12-colored"} - -
{EvoIconPayByBank18Colored.name || "pay-by-bank-18-colored"} - -
{EvoIconPayByBank24Colored.name || "pay-by-bank-24-colored"} - -
{EvoIconPayByBank32Colored.name || "pay-by-bank-32-colored"} - -
{EvoIconPayByBankBe24Colored.name || "pay-by-bank-be-24-colored"} - -
{EvoIconPayByBankDe24Colored.name || "pay-by-bank-de-24-colored"} - -
{EvoIconPayByBankFr24Colored.name || "pay-by-bank-fr-24-colored"} - -
{EvoIconPayByBankUk24Colored.name || "pay-by-bank-uk-24-colored"} - -
{EvoIconPayoneer12Colored.name || "payoneer-12-colored"} - -
{EvoIconPayoneer18Colored.name || "payoneer-18-colored"} - -
{EvoIconPayoneer24Colored.name || "payoneer-24-colored"} - -
{EvoIconPayoneer32Colored.name || "payoneer-32-colored"} - -
{EvoIconPayout16.name || "payout-16"} - -
{EvoIconPayout20.name || "payout-20"} - -
{EvoIconPayout24.name || "payout-24"} - -
{EvoIconPaypal12Colored.name || "paypal-12-colored"} - -
{EvoIconPaypal18Colored.name || "paypal-18-colored"} - -
{EvoIconPaypal24Colored.name || "paypal-24-colored"} - -
{EvoIconPaypal32Colored.name || "paypal-32-colored"} - -
{EvoIconPaypalBlue12Colored.name || "paypal-blue-12-colored"} - -
{EvoIconPaypalBlue18Colored.name || "paypal-blue-18-colored"} - -
{EvoIconPaypalBlue24Colored.name || "paypal-blue-24-colored"} - -
{EvoIconPaypalBlue32Colored.name || "paypal-blue-32-colored"} - -
{EvoIconPaypalCredit12Colored.name || "paypal-credit-12-colored"} - -
{EvoIconPaypalCredit18Colored.name || "paypal-credit-18-colored"} - -
{EvoIconPaypalCredit24Colored.name || "paypal-credit-24-colored"} - -
{EvoIconPaypalCredit32Colored.name || "paypal-credit-32-colored"} - -
{EvoIconPaypalDisabled12Colored.name || "paypal-disabled-12-colored"} - -
{EvoIconPaypalDisabled18Colored.name || "paypal-disabled-18-colored"} - -
{EvoIconPaypalDisabled24Colored.name || "paypal-disabled-24-colored"} - -
{EvoIconPaypalDisabled32Colored.name || "paypal-disabled-32-colored"} - -
{EvoIconPaypalLogo16.name || "paypal-logo-16"} - -
{EvoIconPaypay12Colored.name || "paypay-12-colored"} - -
{EvoIconPaypay18Colored.name || "paypay-18-colored"} - -
{EvoIconPaypay24Colored.name || "paypay-24-colored"} - -
{EvoIconPaypay32Colored.name || "paypay-32-colored"} - -
{EvoIconPencil16.name || "pencil-16"} - -
{EvoIconPencil20.name || "pencil-20"} - -
{EvoIconPencil24.name || "pencil-24"} - -
{EvoIconPencilSigned24.name || "pencil-signed-24"} - -
{EvoIconPeople16.name || "people-16"} - -
{EvoIconPeople24.name || "people-24"} - -
{EvoIconPeso16.name || "peso-16"} - -
{EvoIconPeso24.name || "peso-24"} - -
{EvoIconPhone16.name || "phone-16"} - -
{EvoIconPhone24.name || "phone-24"} - -
{EvoIconPin12.name || "pin-12"} - -
{EvoIconPin16.name || "pin-16"} - -
{EvoIconPin24.name || "pin-24"} - -
{EvoIconPinFilled12.name || "pin-filled-12"} - -
{EvoIconPinFilled16.name || "pin-filled-16"} - -
{EvoIconPinFilled24.name || "pin-filled-24"} - -
{EvoIconPinterest24.name || "pinterest-24"} - -
{EvoIconPlay16.name || "play-16"} - -
{EvoIconPlay20.name || "play-20"} - -
{EvoIconPlay24.name || "play-24"} - -
{EvoIconPlayDisabled16.name || "play-disabled-16"} - -
{EvoIconPlayFilled16Colored.name || "play-filled-16-colored"} - -
{EvoIconPlayFilled24Colored.name || "play-filled-24-colored"} - -
{EvoIconPlayFilled64Colored.name || "play-filled-64-colored"} - -
{EvoIconPostepay12Colored.name || "postepay-12-colored"} - -
{EvoIconPostepay18Colored.name || "postepay-18-colored"} - -
{EvoIconPostepay24Colored.name || "postepay-24-colored"} - -
{EvoIconPostepay32Colored.name || "postepay-32-colored"} - -
{EvoIconPottedPlant16.name || "potted-plant-16"} - -
{EvoIconPottedPlant24.name || "potted-plant-24"} - -
{EvoIconPound16.name || "pound-16"} - -
{EvoIconPound24.name || "pound-24"} - -
{EvoIconPrint16.name || "print-16"} - -
{EvoIconPrint24.name || "print-24"} - -
{EvoIconProfile16.name || "profile-16"} - -
{EvoIconProfile20.name || "profile-20"} - -
{EvoIconProfile24.name || "profile-24"} - -
{EvoIconProfileFilled24.name || "profile-filled-24"} - -
{EvoIconProfileVerification16.name || "profile-verification-16"} - -
{EvoIconProfileVerification20.name || "profile-verification-20"} - -
{EvoIconProfileVerification24.name || "profile-verification-24"} - -
{EvoIconProgressCurrent24.name || "progress-current-24"} - -
{EvoIconProgressUpcoming24.name || "progress-upcoming-24"} - -
{EvoIconPromotion12.name || "promotion-12"} - -
{EvoIconPromotion16.name || "promotion-16"} - -
{EvoIconPromotion24.name || "promotion-24"} - -
{EvoIconPsa16.name || "psa-16"} - -
{EvoIconPsa16Colored.name || "psa-16-colored"} - -
{EvoIconPsaLogo16.name || "psa-logo-16"} - -
{EvoIconPsaLogoColor16Colored.name || "psa-logo-color-16-colored"} - -
{EvoIconPsaVault16.name || "psa-vault-16"} - -
{EvoIconPsaVault16Colored.name || "psa-vault-16-colored"} - -
{EvoIconPsaVault24.name || "psa-vault-24"} - -
{EvoIconPsaVaultLogo16.name || "psa-vault-logo-16"} - -
{EvoIconPsaVaultLogoColor16Colored.name || "psa-vault-logo-color-16-colored"} - -
{EvoIconQrCode16.name || "qr-code-16"} - -
{EvoIconQrCode24.name || "qr-code-24"} - -
{EvoIconRadioChecked18.name || "radio-checked-18"} - -
{EvoIconRadioChecked24.name || "radio-checked-24"} - -
{EvoIconRadioUnchecked18.name || "radio-unchecked-18"} - -
{EvoIconRadioUnchecked24.name || "radio-unchecked-24"} - -
{EvoIconRecoveryCode16.name || "recovery-code-16"} - -
{EvoIconRecoveryCode24.name || "recovery-code-24"} - -
{EvoIconReddit24.name || "reddit-24"} - -
{EvoIconRefresh16.name || "refresh-16"} - -
{EvoIconRefresh20.name || "refresh-20"} - -
{EvoIconRefresh24.name || "refresh-24"} - -
{EvoIconRelaxedGrid24.name || "relaxed-grid-24"} - -
{EvoIconRelaxedGridFilled24.name || "relaxed-grid-filled-24"} - -
{EvoIconRemove12.name || "remove-12"} - -
{EvoIconRemove16.name || "remove-16"} - -
{EvoIconRemove24.name || "remove-24"} - -
{EvoIconReply16.name || "reply-16"} - -
{EvoIconReply24.name || "reply-24"} - -
{EvoIconReplyChat12.name || "reply-chat-12"} - -
{EvoIconReplyChat16.name || "reply-chat-16"} - -
{EvoIconReplyChat24.name || "reply-chat-24"} - -
{EvoIconReturn16.name || "return-16"} - -
{EvoIconReturn24.name || "return-24"} - -
{EvoIconRewind16.name || "rewind-16"} - -
{EvoIconRibbon16.name || "ribbon-16"} - -
{EvoIconRibbon24.name || "ribbon-24"} - -
{EvoIconRim16.name || "rim-16"} - -
{EvoIconRim24.name || "rim-24"} - -
{EvoIconRinggit16.name || "ringgit-16"} - -
{EvoIconRinggit24.name || "ringgit-24"} - -
{EvoIconRotate16.name || "rotate-16"} - -
{EvoIconRotate20.name || "rotate-20"} - -
{EvoIconRotate24.name || "rotate-24"} - -
{EvoIconRotateLandscapeLeft24.name || "rotate-landscape-left-24"} - -
{EvoIconRotateLandscapeRight24.name || "rotate-landscape-right-24"} - -
{EvoIconRotatePortraitLeft24.name || "rotate-portrait-left-24"} - -
{EvoIconRotatePortraitRight24.name || "rotate-portrait-right-24"} - -
{EvoIconRuler16.name || "ruler-16"} - -
{EvoIconRuler24.name || "ruler-24"} - -
{EvoIconRupee16.name || "rupee-16"} - -
{EvoIconRupee24.name || "rupee-24"} - -
{EvoIconSatchel16.name || "satchel-16"} - -
{EvoIconSatchel24.name || "satchel-24"} - -
{EvoIconScan16.name || "scan-16"} - -
{EvoIconScan24.name || "scan-24"} - -
{EvoIconSearch16.name || "search-16"} - -
{EvoIconSearch20.name || "search-20"} - -
{EvoIconSearch24.name || "search-24"} - -
{EvoIconSearch64.name || "search-64"} - -
{EvoIconSearchFilled24.name || "search-filled-24"} - -
{EvoIconSearchSimilar16.name || "search-similar-16"} - -
{EvoIconSearchSimilar20.name || "search-similar-20"} - -
{EvoIconSearchSimilar24.name || "search-similar-24"} - -
{EvoIconSeasons16.name || "seasons-16"} - -
{EvoIconSeasons24.name || "seasons-24"} - -
{EvoIconSecurePurchase16.name || "secure-purchase-16"} - -
{EvoIconSecurePurchase24.name || "secure-purchase-24"} - -
{EvoIconSecurityKey24.name || "security-key-24"} - -
{EvoIconSelectAll24.name || "select-all-24"} - -
{EvoIconSelling12.name || "selling-12"} - -
{EvoIconSelling16.name || "selling-16"} - -
{EvoIconSelling20.name || "selling-20"} - -
{EvoIconSelling24.name || "selling-24"} - -
{EvoIconSellingFilled24.name || "selling-filled-24"} - -
{EvoIconSend24.name || "send-24"} - -
{EvoIconSettings16.name || "settings-16"} - -
{EvoIconSettings20.name || "settings-20"} - -
{EvoIconSettings24.name || "settings-24"} - -
{EvoIconShareAndroid16.name || "share-android-16"} - -
{EvoIconShareAndroid20.name || "share-android-20"} - -
{EvoIconShareAndroid24.name || "share-android-24"} - -
{EvoIconShareIos16.name || "share-ios-16"} - -
{EvoIconShareIos20.name || "share-ios-20"} - -
{EvoIconShareIos24.name || "share-ios-24"} - -
{EvoIconSharpen24.name || "sharpen-24"} - -
{EvoIconShipAndLocal16.name || "ship-and-local-16"} - -
{EvoIconShipAndLocal24.name || "ship-and-local-24"} - -
{EvoIconShipAndSafety16.name || "ship-and-safety-16"} - -
{EvoIconShipAndSafety24.name || "ship-and-safety-24"} - -
{EvoIconShirt16.name || "shirt-16"} - -
{EvoIconShirt24.name || "shirt-24"} - -
{EvoIconShoeBox24.name || "shoe-box-24"} - -
{EvoIconShoppingEvent16.name || "shopping-event-16"} - -
{EvoIconShoppingEvent24.name || "shopping-event-24"} - -
{EvoIconShovel16.name || "shovel-16"} - -
{EvoIconShovel24.name || "shovel-24"} - -
{EvoIconShow16.name || "show-16"} - -
{EvoIconShow24.name || "show-24"} - -
{EvoIconSkull12.name || "skull-12"} - -
{EvoIconSkull16.name || "skull-16"} - -
{EvoIconSkull24.name || "skull-24"} - -
{EvoIconSmallBox16.name || "small-box-16"} - -
{EvoIconSmallBox24.name || "small-box-24"} - -
{EvoIconSmallLetter24.name || "small-letter-24"} - -
{EvoIconSneaker16.name || "sneaker-16"} - -
{EvoIconSneaker24.name || "sneaker-24"} - -
{EvoIconSnowflake16.name || "snowflake-16"} - -
{EvoIconSnowflake24.name || "snowflake-24"} - -
{EvoIconSnowmobile16.name || "snowmobile-16"} - -
{EvoIconSnowmobile24.name || "snowmobile-24"} - -
{EvoIconSort12.name || "sort-12"} - -
{EvoIconSort16.name || "sort-16"} - -
{EvoIconSort24.name || "sort-24"} - -
{EvoIconSortDown12.name || "sort-down-12"} - -
{EvoIconSortUp12.name || "sort-up-12"} - -
{EvoIconSparklineDown16.name || "sparkline-down-16"} - -
{EvoIconSparklineDown20.name || "sparkline-down-20"} - -
{EvoIconSparklineDown24.name || "sparkline-down-24"} - -
{EvoIconSparklineUp16.name || "sparkline-up-16"} - -
{EvoIconSparklineUp20.name || "sparkline-up-20"} - -
{EvoIconSparklineUp24.name || "sparkline-up-24"} - -
{EvoIconSparklineUpFilled24.name || "sparkline-up-filled-24"} - -
{EvoIconSpeedometer16.name || "speedometer-16"} - -
{EvoIconSpeedometer24.name || "speedometer-24"} - -
{EvoIconSpinner20.name || "spinner-20"} - -
{EvoIconSpinner24.name || "spinner-24"} - -
{EvoIconSpinner30.name || "spinner-30"} - -
{EvoIconSplitPayment16.name || "split-payment-16"} - -
{EvoIconSplitPayment24.name || "split-payment-24"} - -
{EvoIconSplitView24.name || "split-view-24"} - -
{EvoIconSplitViewFilled24.name || "split-view-filled-24"} - -
{EvoIconSpringLeaf16.name || "spring-leaf-16"} - -
{EvoIconSpringLeaf24.name || "spring-leaf-24"} - -
{EvoIconStarDynamic.name || "star-dynamic"} - -
{EvoIconStarEmpty16.name || "star-empty-16"} - -
{EvoIconStarEmpty24.name || "star-empty-24"} - -
{EvoIconStarEmpty40.name || "star-empty-40"} - -
{EvoIconStarFilled16.name || "star-filled-16"} - -
{EvoIconStarFilled24.name || "star-filled-24"} - -
{EvoIconStarFilled40.name || "star-filled-40"} - -
{EvoIconStarHalf16Colored.name || "star-half-16-colored"} - -
{EvoIconStarHalf24Colored.name || "star-half-24-colored"} - -
{EvoIconStarHalfDark16Colored.name || "star-half-dark-16-colored"} - -
{EvoIconStarHalfDark24Colored.name || "star-half-dark-24-colored"} - -
{EvoIconStepperAttention24.name || "stepper-attention-24"} - -
{EvoIconStepperConfirmation24.name || "stepper-confirmation-24"} - -
{EvoIconStepperCurrent24.name || "stepper-current-24"} - -
{EvoIconStepperUpcoming24.name || "stepper-upcoming-24"} - -
{EvoIconStop16.name || "stop-16"} - -
{EvoIconStop20.name || "stop-20"} - -
{EvoIconStop24.name || "stop-24"} - -
{EvoIconStore16.name || "store-16"} - -
{EvoIconStore24.name || "store-24"} - -
{EvoIconStore64.name || "store-64"} - -
{EvoIconStoreFilled24.name || "store-filled-24"} - -
{EvoIconSuitcase24.name || "suitcase-24"} - -
{EvoIconSupport24.name || "support-24"} - -
{EvoIconSwap16.name || "swap-16"} - -
{EvoIconSwap24.name || "swap-24"} - -
{EvoIconSwitchCamera24.name || "switch-camera-24"} - -
{EvoIconTablet16.name || "tablet-16"} - -
{EvoIconTablet20.name || "tablet-20"} - -
{EvoIconTablet24.name || "tablet-24"} - -
{EvoIconTarget16.name || "target-16"} - -
{EvoIconTarget24.name || "target-24"} - -
{EvoIconTd12Colored.name || "td-12-colored"} - -
{EvoIconTd18Colored.name || "td-18-colored"} - -
{EvoIconTd24Colored.name || "td-24-colored"} - -
{EvoIconTd32Colored.name || "td-32-colored"} - -
{EvoIconTextMessaging16.name || "text-messaging-16"} - -
{EvoIconTextMessaging20.name || "text-messaging-20"} - -
{EvoIconTextMessaging24.name || "text-messaging-24"} - -
{EvoIconTextMessaging64.name || "text-messaging-64"} - -
{EvoIconTextSize16.name || "text-size-16"} - -
{EvoIconTextSize24.name || "text-size-24"} - -
{EvoIconTheEbayVault16.name || "the-ebay-vault-16"} - -
{EvoIconTheEbayVault24.name || "the-ebay-vault-24"} - -
{EvoIconThumbDown16.name || "thumb-down-16"} - -
{EvoIconThumbDown20.name || "thumb-down-20"} - -
{EvoIconThumbDown24.name || "thumb-down-24"} - -
{EvoIconThumbDownFilled16.name || "thumb-down-filled-16"} - -
{EvoIconThumbDownFilled20.name || "thumb-down-filled-20"} - -
{EvoIconThumbDownFilled24.name || "thumb-down-filled-24"} - -
{EvoIconThumbUp16.name || "thumb-up-16"} - -
{EvoIconThumbUp20.name || "thumb-up-20"} - -
{EvoIconThumbUp24.name || "thumb-up-24"} - -
{EvoIconThumbUp64.name || "thumb-up-64"} - -
{EvoIconThumbUpFilled16.name || "thumb-up-filled-16"} - -
{EvoIconThumbUpFilled20.name || "thumb-up-filled-20"} - -
{EvoIconThumbUpFilled24.name || "thumb-up-filled-24"} - -
{EvoIconTick12.name || "tick-12"} - -
{EvoIconTick16.name || "tick-16"} - -
{EvoIconTick24.name || "tick-24"} - -
{EvoIconTiktok24.name || "tiktok-24"} - -
{EvoIconTire16.name || "tire-16"} - -
{EvoIconTire24.name || "tire-24"} - -
{EvoIconToggleModeBottom24.name || "toggle-mode-bottom-24"} - -
{EvoIconToggleModeTop24.name || "toggle-mode-top-24"} - -
{EvoIconTopRatedPlus16.name || "top-rated-plus-16"} - -
{EvoIconTopRatedPlus24.name || "top-rated-plus-24"} - -
{EvoIconTopRatedSeller16.name || "top-rated-seller-16"} - -
{EvoIconTopRatedSeller24.name || "top-rated-seller-24"} - -
{EvoIconTopService16.name || "top-service-16"} - -
{EvoIconTopService24.name || "top-service-24"} - -
{EvoIconTopServiceFilled16.name || "top-service-filled-16"} - -
{EvoIconTopServiceFilled16Colored.name || "top-service-filled-16-colored"} - -
{EvoIconTopServiceFilled24.name || "top-service-filled-24"} - -
{EvoIconTopServiceFilled24Colored.name || "top-service-filled-24-colored"} - -
{EvoIconTradingCard16.name || "trading-card-16"} - -
{EvoIconTradingCard24.name || "trading-card-24"} - -
{EvoIconTradingCardEdition24.name || "trading-card-edition-24"} - -
{EvoIconTradingCardGrade16.name || "trading-card-grade-16"} - -
{EvoIconTradingCardGrade24.name || "trading-card-grade-24"} - -
{EvoIconTransaction24.name || "transaction-24"} - -
{EvoIconTranslate16.name || "translate-16"} - -
{EvoIconTranslate20.name || "translate-20"} - -
{EvoIconTranslate24.name || "translate-24"} - -
{EvoIconTrendDown16Fit.name || "trend-down-16-fit"} - -
{EvoIconTrendUp16Fit.name || "trend-up-16-fit"} - -
{EvoIconTrophy16.name || "trophy-16"} - -
{EvoIconTrophy24.name || "trophy-24"} - -
{EvoIconTruck16.name || "truck-16"} - -
{EvoIconTruck24.name || "truck-24"} - -
{EvoIconTruck64.name || "truck-64"} - -
{EvoIconTruckShipped12.name || "truck-shipped-12"} - -
{EvoIconTruckShipped16.name || "truck-shipped-16"} - -
{EvoIconTruckShipped24.name || "truck-shipped-24"} - -
{EvoIconTwitter24.name || "twitter-24"} - -
{EvoIconUndo16.name || "undo-16"} - -
{EvoIconUndo24.name || "undo-24"} - -
{EvoIconUnionpay12Colored.name || "unionpay-12-colored"} - -
{EvoIconUnionpay18Colored.name || "unionpay-18-colored"} - -
{EvoIconUnionpay24Colored.name || "unionpay-24-colored"} - -
{EvoIconUnionpay32Colored.name || "unionpay-32-colored"} - -
{EvoIconUnlock16.name || "unlock-16"} - -
{EvoIconUnlock24.name || "unlock-24"} - -
{EvoIconUnselectAll24.name || "unselect-all-24"} - -
{EvoIconUpload16.name || "upload-16"} - -
{EvoIconUpload24.name || "upload-24"} - -
{EvoIconUsaa12Colored.name || "usaa-12-colored"} - -
{EvoIconUsaa18Colored.name || "usaa-18-colored"} - -
{EvoIconUsaa24Colored.name || "usaa-24-colored"} - -
{EvoIconUsaa32Colored.name || "usaa-32-colored"} - -
{EvoIconVenmo12Colored.name || "venmo-12-colored"} - -
{EvoIconVenmo18Colored.name || "venmo-18-colored"} - -
{EvoIconVenmo24Colored.name || "venmo-24-colored"} - -
{EvoIconVenmo32Colored.name || "venmo-32-colored"} - -
{EvoIconVerifiedCondition16.name || "verified-condition-16"} - -
{EvoIconVerifiedCondition24.name || "verified-condition-24"} - -
{EvoIconVideo24.name || "video-24"} - -
{EvoIconVisa12Colored.name || "visa-12-colored"} - -
{EvoIconVisa18Colored.name || "visa-18-colored"} - -
{EvoIconVisa24Colored.name || "visa-24-colored"} - -
{EvoIconVisa32Colored.name || "visa-32-colored"} - -
{EvoIconWallet16.name || "wallet-16"} - -
{EvoIconWallet24.name || "wallet-24"} - -
{EvoIconWallet64.name || "wallet-64"} - -
{EvoIconWalletBalance12Colored.name || "wallet-balance-12-colored"} - -
{EvoIconWalletBalance18Colored.name || "wallet-balance-18-colored"} - -
{EvoIconWalletBalance24Colored.name || "wallet-balance-24-colored"} - -
{EvoIconWalletBalance32Colored.name || "wallet-balance-32-colored"} - -
{EvoIconWatch16.name || "watch-16"} - -
{EvoIconWatch24.name || "watch-24"} - -
{EvoIconWellsFargo12Colored.name || "wells-fargo-12-colored"} - -
{EvoIconWellsFargo18Colored.name || "wells-fargo-18-colored"} - -
{EvoIconWellsFargo24Colored.name || "wells-fargo-24-colored"} - -
{EvoIconWellsFargo32Colored.name || "wells-fargo-32-colored"} - -
{EvoIconWhatsapp24.name || "whatsapp-24"} - -
{EvoIconWireTransfer16.name || "wire-transfer-16"} - -
{EvoIconWireTransfer24.name || "wire-transfer-24"} - -
{EvoIconWireTransferCard12Colored.name || "wire-transfer-card-12-colored"} - -
{EvoIconWireTransferCard18Colored.name || "wire-transfer-card-18-colored"} - -
{EvoIconWireTransferCard24Colored.name || "wire-transfer-card-24-colored"} - -
{EvoIconWireTransferCard32Colored.name || "wire-transfer-card-32-colored"} - -
{EvoIconWon16.name || "won-16"} - -
{EvoIconWon24.name || "won-24"} - -
{EvoIconWrench16.name || "wrench-16"} - -
{EvoIconWrench24.name || "wrench-24"} - -
{EvoIconYoutube24.name || "youtube-24"} - -
{EvoIconYuan16.name || "yuan-16"} - -
{EvoIconYuan24.name || "yuan-24"} - -
{EvoIconZipPay12Colored.name || "zip-pay-12-colored"} - -
{EvoIconZipPay18Colored.name || "zip-pay-18-colored"} - -
{EvoIconZipPay24Colored.name || "zip-pay-24-colored"} - -
{EvoIconZipPay32Colored.name || "zip-pay-32-colored"} - -
{EvoIconZloty16.name || "zloty-16"} - -
{EvoIconZloty24.name || "zloty-24"} - -
{EvoIconZoomIn16.name || "zoom-in-16"} - -
{EvoIconZoomIn24.name || "zoom-in-24"} - -
{EvoIconZoomOut16.name || "zoom-out-16"} - -
{EvoIconZoomOut24.name || "zoom-out-24"} - -
{EvoIconImagePlaceholder.name || "image-placeholder"} - -
{EvoIconStarRating0.name || "star-rating-0"} - -
{EvoIconStarRating05.name || "star-rating-0-5"} - -
{EvoIconStarRating1.name || "star-rating-1"} - -
{EvoIconStarRating15.name || "star-rating-1-5"} - -
{EvoIconStarRating2.name || "star-rating-2"} - -
{EvoIconStarRating25.name || "star-rating-2-5"} - -
{EvoIconStarRating3.name || "star-rating-3"} - -
{EvoIconStarRating35.name || "star-rating-3-5"} - -
{EvoIconStarRating4.name || "star-rating-4"} - -
{EvoIconStarRating45.name || "star-rating-4-5"} - -
{EvoIconStarRating5.name || "star-rating-5"} - -
{EvoIconStarRatingSmall0.name || "star-rating-small-0"} - -
{EvoIconStarRatingSmall05.name || "star-rating-small-0-5"} - -
{EvoIconStarRatingSmall1.name || "star-rating-small-1"} - -
{EvoIconStarRatingSmall15.name || "star-rating-small-1-5"} - -
{EvoIconStarRatingSmall2.name || "star-rating-small-2"} - -
{EvoIconStarRatingSmall25.name || "star-rating-small-2-5"} - -
{EvoIconStarRatingSmall3.name || "star-rating-small-3"} - -
{EvoIconStarRatingSmall35.name || "star-rating-small-3-5"} - -
{EvoIconStarRatingSmall4.name || "star-rating-small-4"} - -
{EvoIconStarRatingSmall45.name || "star-rating-small-4-5"} - -
{EvoIconStarRatingSmall5.name || "star-rating-small-5"} - -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
), }; diff --git a/packages/evo-react/tsconfig.prod.json b/packages/evo-react/tsconfig.prod.json index 48cdeed9d58..69d0528a8bf 100644 --- a/packages/evo-react/tsconfig.prod.json +++ b/packages/evo-react/tsconfig.prod.json @@ -1,5 +1,9 @@ { "extends": "./tsconfig.json", - "exclude": ["./**/*.stories.tsx", "./**/test/*"], + "exclude": [ + "./**/*.stories.tsx", + "./**/test/*", + "./src/icon/icon-example.tsx" + ], "include": ["./src/**/*"] }