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/twenty-queens-rush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@cube-dev/ui-kit": patch
---

Add ProgressBarIcon.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"packageManager": "pnpm@10.14.0",
"packageManager": "pnpm@10.19.0",
"exports": {
".": {
"import": "./dist/es/index.js",
Expand Down
20 changes: 20 additions & 0 deletions src/icons/ProgressBarIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { wrapIcon } from './wrap-icon';

export const ProgressBarIcon = wrapIcon(
'ProgressBarIcon',
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
viewBox="0 0 24 24"
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
d="M4 12h12M4 15h16a3 3 0 1 0 0-6H4a3 3 0 1 0 0 6"
/>
</svg>,
);
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export { PieChartIcon } from './PieChartIcon';
export { PlayCircleIcon } from './PlayCircleIcon';
export { PlayIcon } from './PlayIcon';
export { PlusIcon } from './PlusIcon';
export { ProgressBarIcon } from './ProgressBarIcon';
export { ReloadIcon } from './ReloadIcon';
export { ReportIcon } from './ReportIcon';
export { ReturnIcon } from './ReturnIcon';
Expand Down
Loading