Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Latest commit

 

History

History
54 lines (34 loc) · 1.24 KB

Illo.stories.mdx

File metadata and controls

54 lines (34 loc) · 1.24 KB

import { Meta, Props } from '@storybook/addon-docs/blocks' import Illo from './'

Illo

An Illo component renders an SVG illustration.

Adapter

As of v2.18.0, the svg set is opt-in. This was done to reduce the compiled bundle size. To load the svg icons, add the appropriate adapter to your app.

It is recommended that the adapter be loaded somewhere within your main entry point (e.g. src/index.js).

// src/index.js
// For a lighter-weight svg set for embeddables
import '@helpscout/hsds-react/adapters/embed'
// For the complete svg set
import '@helpscout/hsds-react/adapters/app'

Note: This loads all the svg images, including Icon and Illo.

Loading / Unloading SVG

To manually load SVG sets without an adapter, you can use the load function from this component:

import { load } from '@helpscout/hsds-react/components/Illo'

const customSVGSet = { ... }

load(customSVGSet)

To unload, or reset, the SVG set, you can use the unload function:

import { unload } from '@helpscout/hsds-react/components/Illo'

unload()

Example

<Illo name="blankSlateBurgandy" />

Props