alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
10 lines (9 loc) • 359 B
TypeScript
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;