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