File tree Expand file tree Collapse file tree 4 files changed +47
-0
lines changed Expand file tree Collapse file tree 4 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @cube-dev/ui-kit " : patch
3+ ---
4+
5+ Add CubePauseIcon and CubePlayIcon.
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const CubePauseIcon = wrapIcon (
4+ 'CubePauseIcon' ,
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
13+ stroke = "currentColor"
14+ strokeLinecap = "round"
15+ strokeLinejoin = "round"
16+ strokeWidth = "1.5"
17+ d = "M21 12.5V7.991a1.98 1.98 0 0 0-1-1.717l-7-4.008a2.02 2.02 0 0 0-2 0L4 6.273c-.619.355-1 1.01-1 1.718v8.018c0 .709.381 1.363 1 1.717l7 4.008c.305.174.65.265 1 .265m0 0c.35 0 .695-.091 1-.265m-1 .265V12m0 0 8.73-5.04M12 12 3.27 6.96M17 17v5m4-5v5"
18+ />
19+ </ svg > ,
20+ ) ;
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const CubePlayIcon = wrapIcon (
4+ 'CubePlayIcon' ,
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
13+ stroke = "currentColor"
14+ strokeLinecap = "round"
15+ strokeLinejoin = "round"
16+ strokeWidth = "1.5"
17+ d = "M21 13.5V7.991a1.98 1.98 0 0 0-1-1.717l-7-4.008a2.02 2.02 0 0 0-2 0L4 6.273c-.619.355-1 1.01-1 1.718v8.018c0 .709.381 1.363 1 1.717l7 4.008c.305.174.65.265 1 .265m0 0c.35 0 .695-.091 1-.265m-1 .265V12m0 0 8.73-5.04M12 12 3.27 6.96M17 16v6l5-3z"
18+ />
19+ </ svg > ,
20+ ) ;
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ export { CodeIcon } from './CodeIcon';
4242export { CopyIcon } from './CopyIcon' ;
4343export { CountIcon } from './CountIcon' ;
4444export { CubeIcon } from './CubeIcon' ;
45+ export { CubePauseIcon } from './CubePauseIcon' ;
46+ export { CubePlayIcon } from './CubePlayIcon' ;
4547export { CurrencyDollarIcon } from './CurrencyDollarIcon' ;
4648export { DangerIcon } from './DangerIcon' ;
4749export { DashboardIcon } from './DashboardIcon' ;
You can’t perform that action at this time.
0 commit comments