UNPKG

@payfit/unity-illustrations

Version:

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