diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts index ebc2cbbf..40e148d3 100644 --- a/src/components/Icon/types.ts +++ b/src/components/Icon/types.ts @@ -77,6 +77,7 @@ export type IconName = | "pencil" | "pie-chart" | "play" + | "play-in-circle" | "plus" | "popout" | "query" diff --git a/src/components/Logos/Logos.mdx b/src/components/Logos/Logos.mdx index f6e49b0b..80b44ca6 100644 --- a/src/components/Logos/Logos.mdx +++ b/src/components/Logos/Logos.mdx @@ -7,7 +7,7 @@ import { ThemeProvider } from "../../theme"; # Logos - + {Object.keys(LogosLight).map((iconName) => ( diff --git a/src/components/icons/Icons.mdx b/src/components/icons/Icons.mdx index 879e2a28..a80c1d01 100644 --- a/src/components/icons/Icons.mdx +++ b/src/components/icons/Icons.mdx @@ -6,11 +6,11 @@ import LogosLight from '../Logos/LogosLight' import { Meta, IconGallery, IconItem, Story } from "@storybook/blocks"; import { ThemeProvider } from "../../theme"; - + # Glyphs - - +
+ {Object.keys(ICONS_MAP).map((iconName) => ( @@ -21,7 +21,7 @@ import { ThemeProvider } from "../../theme"; # Flags - +
{Object.keys(FlagList).map((iconName) => ( @@ -31,7 +31,7 @@ import { ThemeProvider } from "../../theme"; # Payments - +
{(Object.keys(PaymentList)).map((iconName) => ( @@ -41,8 +41,8 @@ import { ThemeProvider } from "../../theme"; # Logo - - +
+ {(Object.keys(LogosLight)).map((iconName) => ( diff --git a/src/components/icons/Play.tsx b/src/components/icons/Play.tsx index dc643293..19f425a2 100644 --- a/src/components/icons/Play.tsx +++ b/src/components/icons/Play.tsx @@ -10,19 +10,13 @@ const Play = (props: SVGAttributes) => ( {...props} > - ); diff --git a/src/components/icons/PlayInCircle.tsx b/src/components/icons/PlayInCircle.tsx new file mode 100644 index 00000000..dc643293 --- /dev/null +++ b/src/components/icons/PlayInCircle.tsx @@ -0,0 +1,30 @@ +import { SVGAttributes } from "react"; + +const Play = (props: SVGAttributes) => ( + + + + +); + +export default Play; diff --git a/src/components/icons/Refresh.tsx b/src/components/icons/Refresh.tsx index 493d4c00..6a6d1846 100644 --- a/src/components/icons/Refresh.tsx +++ b/src/components/icons/Refresh.tsx @@ -14,14 +14,14 @@ const Refresh = (props: SVGAttributes) => ( strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.5} - d="M8.5 6H12a7.5 7.5 0 1 1-6.666 4.06" + d="M15.5 6H12C7.858 6 4.5 9.358 4.5 13.5C4.5 17.642 7.858 21 12 21C16.142 21 19.5 17.642 19.5 13.5C19.5 12.26 19.199 11.09 18.666 10.06" /> );