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