From 1756934535f1d90445d27f2767ca75df5f007bc3 Mon Sep 17 00:00:00 2001 From: "aleksey.plutaev" Date: Wed, 15 Apr 2026 18:59:47 +0500 Subject: [PATCH] Add VideoStar icon --- package.json | 4 ++-- packages/core/package.json | 4 ++-- packages/icons/index.ts | 3 ++- packages/icons/lib/VideoStar.tsx | 12 ++++++++++++ packages/icons/package.json | 4 ++-- packages/icons/svg/Fill/video-star.svg | 3 +++ packages/icons/svg/Outline/video-star.svg | 3 +++ packages/system/package.json | 4 ++-- 8 files changed, 28 insertions(+), 9 deletions(-) create mode 100644 packages/icons/lib/VideoStar.tsx create mode 100644 packages/icons/svg/Fill/video-star.svg create mode 100644 packages/icons/svg/Outline/video-star.svg diff --git a/package.json b/package.json index 27ea88fb2..7868b2d6e 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "stage-ui", "author": "Script Heads", - "version": "0.7.67", + "version": "0.7.68", "license": "MIT", "private": true, "workspaces": [ @@ -65,4 +65,4 @@ "vite": "2.8.6", "vite-plugin-svgr": "1.0.1" } -} +} \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index 4da9545d0..40d83b29d 100755 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@stage-ui/core", "description": "Flexible UI components library declared by your own Design System.", - "version": "0.7.67", + "version": "0.7.68", "license": "MIT", "homepage": "https://stageui.shds.io/", "bugs": "https://github.com/script-heads/stage-ui/issues", @@ -41,4 +41,4 @@ "peerDependencies": { "react": ">=16" } -} +} \ No newline at end of file diff --git a/packages/icons/index.ts b/packages/icons/index.ts index a1130d698..73a43468b 100755 --- a/packages/icons/index.ts +++ b/packages/icons/index.ts @@ -1,5 +1,5 @@ /** -version: 0.7.67 +version: 0.7.68 */ export { default as Activity } from './lib/Activity' export { default as AlarmClock1 } from './lib/AlarmClock1' @@ -317,6 +317,7 @@ export { default as Upload } from './lib/Upload' export { default as Version } from './lib/Version' export { default as VideoCut } from './lib/VideoCut' export { default as VideoOff } from './lib/VideoOff' +export { default as VideoStar } from './lib/VideoStar' export { default as Video } from './lib/Video' export { default as VolumeDown } from './lib/VolumeDown' export { default as VolumeOff } from './lib/VolumeOff' diff --git a/packages/icons/lib/VideoStar.tsx b/packages/icons/lib/VideoStar.tsx new file mode 100644 index 000000000..fddcbed73 --- /dev/null +++ b/packages/icons/lib/VideoStar.tsx @@ -0,0 +1,12 @@ +/** +The MIT License (MIT) +*/ +import{ Props, createIcon } from '../Icon' +import React from 'react' + +export default React.forwardRef((props: Props, ref: React.ForwardedRef) => ( + createIcon(props, ref, { + filled: , + outline: , + }) +)) \ No newline at end of file diff --git a/packages/icons/package.json b/packages/icons/package.json index 7a0131f52..a25560bc6 100755 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,7 +1,7 @@ { "name": "@stage-ui/icons", "description": "Flexible UI components library declared by your own Design System.", - "version": "0.7.67", + "version": "0.7.68", "license": "MIT", "homepage": "https://stageui.shds.io/", "bugs": "https://github.com/script-heads/stage-ui/issues", @@ -36,4 +36,4 @@ "peerDependencies": { "react": ">=16" } -} +} \ No newline at end of file diff --git a/packages/icons/svg/Fill/video-star.svg b/packages/icons/svg/Fill/video-star.svg new file mode 100644 index 000000000..448303877 --- /dev/null +++ b/packages/icons/svg/Fill/video-star.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons/svg/Outline/video-star.svg b/packages/icons/svg/Outline/video-star.svg new file mode 100644 index 000000000..0a6ffe10a --- /dev/null +++ b/packages/icons/svg/Outline/video-star.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/system/package.json b/packages/system/package.json index e1458f2ad..bc0821aaa 100755 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,7 +1,7 @@ { "name": "@stage-ui/system", "description": "Flexible UI components library declared by your own Design System.", - "version": "0.7.67", + "version": "0.7.68", "license": "MIT", "homepage": "https://stageui.shds.io/", "bugs": "https://github.com/script-heads/stage-ui/issues", @@ -40,4 +40,4 @@ "react": ">=16", "@emotion/react": ">=11" } -} +} \ No newline at end of file