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