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