UNPKG

@payfit/unity-illustrations

Version:

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