Skip to content

Commit 743d5fa

Browse files
authored
feat: add StatsIcon (#495)
1 parent b068d3a commit 743d5fa

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.changeset/dirty-birds-bow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@cube-dev/ui-kit': patch
3+
---
4+
5+
Add StatsIcon.

src/icons/StatsIcon.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export const StatsIcon = (
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
width="16"
5+
height="16"
6+
viewBox="0 0 16 16"
7+
fill="none"
8+
>
9+
<path
10+
fill="currentColor"
11+
fillRule="evenodd"
12+
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"
13+
clipRule="evenodd"
14+
/>
15+
</svg>
16+
);

src/icons/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ import { ExclamationCircleIcon as _ExclamationCircleIcon } from './ExclamationCi
6565
import { NotAllowedIcon as _NotAllowedIcon } from './NotAllowedIcon';
6666
import { PauseCircleFilledIcon as _PauseCircleFilledIcon } from './PauseCircleFilledIcon';
6767
import { PauseCircleIcon as _PauseCircleIcon } from './PauseCircleIcon';
68+
import { StatsIcon as _StatsIcon } from './StatsIcon';
6869

6970
export const CloseIcon = wrapIcon('CloseIcon', _CloseIcon);
7071
export const ExclamationIcon = wrapIcon('ExclamationIcon', _ExclamationIcon);
@@ -156,6 +157,7 @@ export const PauseCircleFilledIcon = wrapIcon(
156157
_PauseCircleFilledIcon,
157158
);
158159
export const PauseCircleIcon = wrapIcon('PauseCircleIcon', _PauseCircleIcon);
160+
export const StatsIcon = wrapIcon('StatsIcon', _StatsIcon);
159161

160162
export { IconContainer } from './IconContainer';
161163

0 commit comments

Comments
 (0)