UNPKG

@payfit/unity-illustrations

Version:

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