UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

10 lines (9 loc) 359 B
import { PropsWithChildren } from 'react'; export type BadgeProps = PropsWithChildren<{ amount?: number; top?: number | string; right?: number | string; bottom?: number | string; left?: number | string; }>; export declare function Badge({ children, amount, top, right, bottom, left }: BadgeProps): import("react/jsx-runtime").JSX.Element;