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