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