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