UNPKG

@payfit/unity-illustrations

Version:

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