@gechiui/components
Version:
UI components for GeChiUI.
18 lines • 564 B
TypeScript
export default ConnectedCardDivider;
/**
* `CardDivider` renders an optional divider within a `Card`.
* It is typically used to divide multiple `CardBody` components from each other.
*
* @example
* ```jsx
* import { Card, CardBody, CardDivider } from `@gechiui/components`;
*
* <Card>
* <CardBody>...</CardBody>
* <CardDivider />
* <CardBody>...</CardBody>
* </Card>
* ```
*/
declare const ConnectedCardDivider: import("../../ui/context").GeChiUIComponent<"hr", import("../../divider").DividerProps, false>;
//# sourceMappingURL=component.d.ts.map