UNPKG

@activate-spritz-components/spritz-ui-components

Version:

This is shared components library for spritz projects.

14 lines (13 loc) 251 B
import { FunctionComponent } from 'react'; interface BadgeProps { className?: string; badgeText: string; } /** * Badge component * * @param {*} props * @returns */ declare const Index: FunctionComponent<BadgeProps>; export default Index;