File tree Expand file tree Collapse file tree 5 files changed +49
-1
lines changed Expand file tree Collapse file tree 5 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @cube-dev/ui-kit " : patch
3+ ---
4+
5+ Add DecimalDecreaseIcon.tsx and DecimalIncreaseIcon.tsx.
Original file line number Diff line number Diff line change 4747 "clear" : " pnpm clear:dist && rimraf ./storybook-docs ./storybook-static ./node_modules/.cache" ,
4848 "clear:dist" : " rimraf ./dist" ,
4949 "release" : " pnpm build && changeset publish" ,
50- "postinstall" : " git config blame.ignoreRevsFile .git-blame-ignore-revs"
50+ "postinstall" : " git config blame.ignoreRevsFile .git-blame-ignore-revs" ,
51+ "add-icons" : " cd src/icons && node add-new-icon.js"
5152 },
5253 "publishConfig" : {
5354 "directory" : " dist"
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const DecimalDecreaseIcon = wrapIcon (
4+ 'DecimalDecreaseIcon' ,
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 = "#000"
14+ strokeLinecap = "round"
15+ strokeLinejoin = "round"
16+ strokeWidth = "1.5"
17+ d = "M5 11h.01M15.5 21 13 18m0 0 2.5-3M13 18h6M10 3a2 2 0 0 1 2 2v4a2 2 0 1 1-4 0V5a2 2 0 0 1 2-2"
18+ />
19+ </ svg > ,
20+ ) ;
Original file line number Diff line number Diff line change 1+ import { wrapIcon } from './wrap-icon' ;
2+
3+ export const DecimalIncreaseIcon = wrapIcon (
4+ 'DecimalIncreaseIcon' ,
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 = "#000"
14+ strokeLinecap = "round"
15+ strokeLinejoin = "round"
16+ strokeWidth = "1.5"
17+ d = "M5 11h.01M16.5 21l2.5-3m0 0-2.5-3m2.5 3h-6m4-15a2 2 0 0 1 2 2v4a2 2 0 1 1-4 0V5a2 2 0 0 1 2-2m-7 0a2 2 0 0 1 2 2v4a2 2 0 1 1-4 0V5a2 2 0 0 1 2-2"
18+ />
19+ </ svg > ,
20+ ) ;
Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ export { CubeIcon } from './CubeIcon';
4444export { DangerIcon } from './DangerIcon' ;
4545export { DashboardIcon } from './DashboardIcon' ;
4646export { DatabaseIcon } from './DatabaseIcon' ;
47+ export { DecimalDecreaseIcon } from './DecimalDecreaseIcon' ;
48+ export { DecimalIncreaseIcon } from './DecimalIncreaseIcon' ;
4749export { DirectionIcon } from './DirectionIcon' ;
4850export { DonutIcon } from './DonutIcon' ;
4951export { DownIcon } from './DownIcon' ;
You can’t perform that action at this time.
0 commit comments