Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/clean-meals-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@cube-dev/ui-kit': patch
---

Add PlayCircle and Report icons.
19 changes: 19 additions & 0 deletions src/icons/PlayCircleIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { wrapIcon } from './wrap-icon';

export const PlayCircleIcon = wrapIcon(
'PlayCircleIcon',
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="none"
viewBox="0 0 16 16"
>
<path
fill="currentColor"
fillRule="evenodd"
d="M8 14.7A6.7 6.7 0 1 0 8 1.3a6.7 6.7 0 0 0 0 13.4M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m3.155-7.491a.6.6 0 0 0 0-1.018l-4.207-2.63a.6.6 0 0 0-.918.51v5.258a.6.6 0 0 0 .918.51z"
clipRule="evenodd"
/>
</svg>,
);
26 changes: 26 additions & 0 deletions src/icons/ReportIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { wrapIcon } from './wrap-icon';

export const ReportIcon = wrapIcon(
'ReportIcon',
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="none"
viewBox="0 0 16 16"
>
<g clipPath="url(#a)">
<path
fill="currentColor"
fillRule="evenodd"
d="M9 1H4v2h5zM3 1v2H1V1zM1 9V4h2v5zm0 1v5h2v-5zm3 0v5h5v-5zm6 0v5h5v-5zm5-1V4h-5v5zM9 9H4V4h5zm6-8v2h-5V1zM1 0a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V1a1 1 0 0 0-1-1z"
clipRule="evenodd"
/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h16v16H0z" />
</clipPath>
</defs>
</svg>,
);
2 changes: 2 additions & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ export { PauseCircleFilledIcon } from './PauseCircleFilledIcon';
export { PauseCircleIcon } from './PauseCircleIcon';
export { PauseIcon } from './PauseIcon';
export { PieChartIcon } from './PieChartIcon';
export { PlayCircleIcon } from './PlayCircleIcon';
export { PlayIcon } from './PlayIcon';
export { PlusIcon } from './PlusIcon';
export { ReloadIcon } from './ReloadIcon';
export { ReportIcon } from './ReportIcon';
export { ReturnIcon } from './ReturnIcon';
export { RightIcon } from './RightIcon';
export { SchemeIcon } from './SchemeIcon';
Expand Down
Loading