UNPKG

@payfit/unity-illustrations

Version:

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