UNPKG

@payfit/unity-illustrations

Version:

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