UNPKG

@payfit/unity-illustrations

Version:

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