UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 287 B
import { type IconBaseProps } from 'react-icons'; import { type IconName } from './types'; type IconProps = { name: IconName; } & IconBaseProps; declare const Icon: (props: IconProps) => import("react/jsx-runtime").JSX.Element | null; export default Icon; export type { IconProps };