UNPKG

@payfit/unity-illustrations

Version:

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