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