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