UNPKG

@payfit/unity-illustrations

Version:

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