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