UNPKG

@payfit/unity-illustrations

Version:

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