alinea
Version:
Headless git-based CMS
10 lines (9 loc) • 364 B
TypeScript
import type { 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;