Skip to content

Commit 216af80

Browse files
committed
feat: add ChartHeatmapIcon
1 parent d07e830 commit 216af80

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

.changeset/stale-carrots-refuse.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 ChartHeatmapIcon component.

src/icons/ChartHeatmapIcon.tsx

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { wrapIcon } from './wrap-icon';
2+
3+
export const ChartHeatmapIcon = wrapIcon(
4+
'ChartHeatmapIcon',
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
width="24"
8+
height="24"
9+
fill="none"
10+
viewBox="0 0 24 24"
11+
>
12+
<path fill="currentColor" d="M2 8h7v4H2z" opacity=".3" />
13+
<path fill="currentColor" d="M2 12h7v4H2z" opacity=".6" />
14+
<path fill="currentColor" d="M9 3h6v5H9z" opacity=".1" />
15+
<path fill="currentColor" d="M9 12h6v4H9z" opacity=".8" />
16+
<path fill="currentColor" d="M9 8h6v4H9z" opacity=".4" />
17+
<path fill="currentColor" d="M9 16h6v5H9z" opacity=".1" />
18+
<path fill="currentColor" d="M15 12h7v4h-7z" opacity=".4" />
19+
<path fill="currentColor" d="M15 8h7v4h-7z" opacity=".1" />
20+
<rect
21+
width="20"
22+
height="18"
23+
x="2"
24+
y="3"
25+
stroke="currentColor"
26+
strokeLinecap="round"
27+
strokeLinejoin="round"
28+
strokeWidth="1.5"
29+
rx="1"
30+
/>
31+
</svg>,
32+
);

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export { ChartBoxPlotIcon } from './ChartBoxPlotIcon';
2626
export { ChartBubbleIcon } from './ChartBubbleIcon';
2727
export { ChartDonut2Icon } from './ChartDonut2Icon';
2828
export { ChartFunnelIcon } from './ChartFunnelIcon';
29+
export { ChartHeatmapIcon } from './ChartHeatmapIcon';
2930
export { ChartKPIIcon } from './ChartKPIIcon';
3031
export { ChartPie2Icon } from './ChartPie2Icon';
3132
export { ChartScatterIcon } from './ChartScatterIcon';

0 commit comments

Comments
 (0)