svgtosvelte
is the Best Way to Convert SVG to Svelte 5 Components
To install the package, use the following command:
npm install -D @jlacostaec/svgtosvelte
pnpm add -D @jlacostaec/svgtosvelte
yarn add -D @jlacostaec/svgtosvelte
You can use the svgtosvelte
CLI to convert SVG files to Svelte components. The basic command is:
svgtosvelte <source> [destination] [options]
<source>
: Source directory containing SVG files.[destination]
: Destination directory for Svelte components (default: src/lib).-p, --prefix <prefix>
: Add a prefix to component names (default: '').-s, --suffix <suffix>
: Add a suffix to component names (default: '').-c, --casing <casing>
: Set casing for component names (default: PascalCase).-t, --typescript
: Use TypeScript in generated components (default: false).Convert SVG files in the icons directory to Svelte components in the src/lib directory:
svgtosvelte icons
Convert SVG files with a prefix and suffix:
svgtosvelte icons src/lib -p Icon -s Component
Convert SVG files with camelCase naming and TypeScript:
svgtosvelte icons src/lib -c camelCase -t
You can also use the package programmatically:
convertSvgToSvelte(source: string, outDir: string, options: { prefix: string, suffix: string, casing: CasingFormat, useTypeScript: boolean }): void
source: string
: The folder containing all the SVG files to be converted.outDir: string
: Destination folder for all created Svelte files.option.prefix: string
: The name appended to the beginning of each component name.option.suffix: string
: The name appended to the end of each component name.option.casing: string
: Convert all components name to the given casing. (PascalCase, camelCase, kebab-case, snake_case)option.useTypeScript: boolean
: Whether to use TS for file types or not.import { convertSvgToSvelte } from "svgtosvelte"
convertSvgToSvelte('src/assets/', 'src/lib/', {prefix: 'Svg2Svelte', suffix: 'byAuthor', casing: 'PascalCase', useTypeScript: true});
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! Please open an issue or submit a pull request for any changes.
For any questions or feedback, please contact me here.