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