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