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