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