UNPKG

@payfit/unity-illustrations

Version:

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