UNPKG

@payfit/unity-illustrations

Version:

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