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