UNPKG

@payfit/unity-illustrations

Version:

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