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