react-ui-mat
Version:
- ANIMATE - BADGES ( success, danger, info, light, primary, green ) - BEHAVIOR - BUTTONS - CHECKBOX - COLLAPSE - CONTEXT PANEL - DATE PICKER - DATEPICKER - DATEUTIL - DIVIDER - DRAGABLE MODAL - INCORRECT_ENTRY - INPUT - INPUT_FIELDS - MULTISELECT - MUPLAY
10 lines (9 loc) • 613 B
TypeScript
import { CardSectionContentProps, CardSectionProps, CardSectionRowProps, CardSectionTitleProps } from './types';
declare const CardSection: {
({ children, className }: CardSectionProps): import("react/jsx-runtime").JSX.Element;
Title({ children, className }: CardSectionTitleProps): import("react/jsx-runtime").JSX.Element;
Content({ children, className }: CardSectionContentProps): import("react/jsx-runtime").JSX.Element;
Row({ children, className }: CardSectionRowProps): import("react/jsx-runtime").JSX.Element;
};
export type CardSectionType = typeof CardSection;
export default CardSection;