UNPKG

@payfit/unity-illustrations

Version:

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