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