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