mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
@vjs-10/react-icons
React-specific icon components derived from @vjs-10/icons.
Overview
This package provides React components for media player icons that are automatically generated from SVG files. All icon components are built using SVGR to transform SVG assets into optimized React components.
🔄 Auto-Generated Components
Important: The React components in this package are automatically generated. Do not edit them directly.
Generated Files Location
src/generated-icons/
├── index.ts # Auto-generated exports (DO NOT EDIT)
├── Play.tsx # Auto-generated component (DO NOT EDIT)
├── Pause.tsx # Auto-generated component (DO NOT EDIT)
├── VolumeHigh.tsx # Auto-generated component (DO NOT EDIT)
├── VolumeLow.tsx # Auto-generated component (DO NOT EDIT)
└── VolumeOff.tsx # Auto-generated component (DO NOT EDIT)
Source of Truth
All icons originate from SVG files located in:
packages/core/icons/assets/
├── play.svg
├── pause.svg
├── volume-high.svg
├── volume-low.svg
└── volume-off.svg
Usage
import { PauseIcon, PlayIcon, VolumeHighIcon } from '@vjs-10/react-icons';
function MediaControls() {
return (
<div>
<PlayIcon color="blue" width={24} height={24} />
<PauseIcon color="red" className="pause-btn" />
<VolumeHighIcon />
</div>
);
}
IconProps Interface
All generated icon components accept the following props:
interface IconProps extends SVGAttributes<SVGElement> {
children?: never;
color?: string;
}
color: Sets the icon color (default:'currentColor')- All SVG attributes:
width,height,className,onClick, etc. - No children: Icon components don't accept children
🔧 Development Workflow
Adding New Icons
- Add SVG file to
packages/core/icons/assets/filename.svg - Regenerate components: Run
pnpm generatein this package - New component will be available as
FilenameIcon
Modifying Existing Icons
- Edit SVG file in
packages/core/icons/assets/ - Regenerate components: Run
pnpm generatein this package - Component updates automatically
Build Process
# Generate React components from SVG files
pnpm generate
# Build the package (includes generation step)
pnpm build
# Clean generated files and dist
pnpm clean
📦 Package Scripts
generate: Transform SVG files into React components using SVGRbuild: Generate components + build distribution filesclean: Remove generated components and build artifacts
🏗️ Architecture
This package follows the monorepo's dependency hierarchy:
- Depends on:
@vjs-10/icons(for shared SVG assets) - Peer dependency:
react(>=16.8.0) - Build tool: SVGR for SVG-to-React transformation
🚫 What NOT to Edit
src/generated-icons/- All files are auto-generated- Generated components have
@generatedJSDoc tags - Generated files include clear "DO NOT EDIT" warnings
✅ What You CAN Edit
src/types.d.ts- TypeScript interface definitionssrc/index.ts- Main export file (if needed)svgr.config.js- SVGR configurationpackage.json- Package configuration- This
README.md
🎯 Icon Naming Convention
SVG filename → React component name:
play.svg→PlayIconvolume-high.svg→VolumeHighIconmy-custom-icon.svg→MyCustomIconIcon
🔍 Technical Details
- Generator: SVGR v8
- Output: TypeScript React components
- Optimization: Automatic SVG optimization via SVGO
- Styling: Uses
currentColorfor easy theming