UNPKG

@payfit/unity-illustrations

Version:

21 lines (20 loc) 577 B
import { IllustrationAsset, BaseSvgAsset } from './types.js'; export type IncidentPanelAsset = IllustrationAsset<BaseSvgAsset & { readonly name: 'IncidentPanel'; }>; /** * IncidentPanel illustration asset * @example * ```tsx * import { Illustration } from '@payfit/unity-illustrations' * import IncidentPanel from '@payfit/unity-illustrations/assets/IncidentPanel' * * <Illustration * illustration={IncidentPanel} * alt="IncidentPanel illustration" * size="md" * /> * ``` */ declare const IncidentPanel: IncidentPanelAsset; export default IncidentPanel;