File tree Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @cube-dev/ui-kit ' : patch
3+ ---
4+
5+ Add PlayCircle and Report icons.
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const PlayCircleIcon = wrapIcon (
4+ 'PlayCircleIcon' ,
5+ < svg
6+ xmlns = "http://www.w3.org/2000/svg"
7+ width = "16"
8+ height = "16"
9+ fill = "none"
10+ viewBox = "0 0 16 16"
11+ >
12+ < path
13+ fill = "currentColor"
14+ fillRule = "evenodd"
15+ 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"
16+ clipRule = "evenodd"
17+ />
18+ </ svg > ,
19+ ) ;
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const ReportIcon = wrapIcon (
4+ 'ReportIcon' ,
5+ < svg xmlns = "http://www.w3.org/2000/svg" width = "16" height = "16" fill = "none" >
6+ < g clipPath = "url(#a)" >
7+ < path
8+ fill = "currentColor"
9+ fillRule = "evenodd"
10+ 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"
11+ clipRule = "evenodd"
12+ />
13+ </ g >
14+ < defs >
15+ < clipPath id = "a" >
16+ < path fill = "#fff" d = "M0 0h16v16H0z" />
17+ </ clipPath >
18+ </ defs >
19+ </ svg > ,
20+ ) ;
Original file line number Diff line number Diff line change @@ -54,9 +54,11 @@ export { PauseCircleFilledIcon } from './PauseCircleFilledIcon';
5454export { PauseCircleIcon } from './PauseCircleIcon' ;
5555export { PauseIcon } from './PauseIcon' ;
5656export { PieChartIcon } from './PieChartIcon' ;
57+ export { PlayCircleIcon } from './PlayCircleIcon' ;
5758export { PlayIcon } from './PlayIcon' ;
5859export { PlusIcon } from './PlusIcon' ;
5960export { ReloadIcon } from './ReloadIcon' ;
61+ export { ReportIcon } from './ReportIcon' ;
6062export { ReturnIcon } from './ReturnIcon' ;
6163export { RightIcon } from './RightIcon' ;
6264export { SchemeIcon } from './SchemeIcon' ;
You can’t perform that action at this time.
0 commit comments