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