@resource-sentry/reader-svg

Resource Sentry SVG Reader.

Usage no npm install needed!

<script type="module">
  import resourceSentryReaderSvg from 'https://cdn.skypack.dev/@resource-sentry/reader-svg';
</script>

README

Reader: SVG

Recursively walks through file-system and builds optimized SVG snippets ready to be injected in HTML.

Version Dependencies

Installation

yarn add --dev @resource-sentry/reader-svg

Configuration

  • entry, path to a directory with SVG files.

Example

-- [images]
---- logo.svg
---- header.svg
---- [media]
------ play.svg
------ stop.svg

SVG files will be optimized and added into rs.js file ready for use in production code.

import Rs from './rs';

Rs.getResource(Rs.Graphic.LOGO); // Returns XML code for the "logo.svg" asset
Rs.getResource(Rs.Graphic.MEDIA_STOP); // Returns XML code for the "stop.svg" asset