UNPKG

shineout

Version:
10 lines (9 loc) 311 B
import { makeIcon } from '@sheinx/base'; import { IconCompProps } from './icon.type'; type args = Parameters<typeof makeIcon>; export default function icon(...args: args): { (props: IconCompProps): import("react/jsx-runtime").JSX.Element; displayName: string; isShineoutIcon: boolean; }; export {};