UNPKG

@payfit/unity-illustrations

Version:

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