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