Skip to content

Commit

Permalink
feat: add StatsIcon (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenphi authored Jul 25, 2024
1 parent b068d3a commit 743d5fa
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/dirty-birds-bow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@cube-dev/ui-kit': patch
---

Add StatsIcon.
16 changes: 16 additions & 0 deletions src/icons/StatsIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export const StatsIcon = (
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
>
<path
fill="currentColor"
fillRule="evenodd"
d="M11.8 2.74a.7.7 0 1 1 1.4 0v10.47a.7.7 0 1 1-1.4 0zm-6 2.984a.7.7 0 0 1 1.4 0v7.486a.7.7 0 1 1-1.4 0zm-3 3.001a.7.7 0 1 1 1.4 0v4.485a.7.7 0 1 1-1.4 0zm6.7-1.666a.7.7 0 0 0-.7.7v5.451a.7.7 0 1 0 1.4 0V7.76a.7.7 0 0 0-.7-.7"
clipRule="evenodd"
/>
</svg>
);
2 changes: 2 additions & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ import { ExclamationCircleIcon as _ExclamationCircleIcon } from './ExclamationCi
import { NotAllowedIcon as _NotAllowedIcon } from './NotAllowedIcon';
import { PauseCircleFilledIcon as _PauseCircleFilledIcon } from './PauseCircleFilledIcon';
import { PauseCircleIcon as _PauseCircleIcon } from './PauseCircleIcon';
import { StatsIcon as _StatsIcon } from './StatsIcon';

export const CloseIcon = wrapIcon('CloseIcon', _CloseIcon);
export const ExclamationIcon = wrapIcon('ExclamationIcon', _ExclamationIcon);
Expand Down Expand Up @@ -156,6 +157,7 @@ export const PauseCircleFilledIcon = wrapIcon(
_PauseCircleFilledIcon,
);
export const PauseCircleIcon = wrapIcon('PauseCircleIcon', _PauseCircleIcon);
export const StatsIcon = wrapIcon('StatsIcon', _StatsIcon);

export { IconContainer } from './IconContainer';

Expand Down

0 comments on commit 743d5fa

Please sign in to comment.