UNPKG

shineout

Version:

A components library for React

10 lines (9 loc) 286 B
/// <reference types="react" /> import { makeIcon } from '@sheinx/base'; import { IconCompProps } from './icon.type'; type args = Parameters<typeof makeIcon>; export default function icon(...args: args): { (props: IconCompProps): JSX.Element; displayName: string; }; export {};