UNPKG

@lifespikes/ui

Version:
15 lines (14 loc) 458 B
import * as React from 'react'; import { FC, PropsWithChildren, ReactNode } from 'react'; export interface CardBadgeProps extends PropsWithChildren, React.HTMLAttributes<HTMLDivElement> { footer?: ReactNode; title: string; description?: string; badgeTxt?: string; buttons?: ReactNode; className?: string; header?: ReactNode; hasSeparator?: boolean; asChild?: boolean; } export declare const CardBadge: FC<CardBadgeProps>;