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