UNPKG

511 BTypeScriptView Raw
1import * as React from "react";
2import { HTMLDivProps, Props } from "../../common/props";
3export interface SectionCardProps extends Props, HTMLDivProps, React.RefAttributes<HTMLDivElement> {
4 /**
5 * Whether to apply visual padding inside the content container element.
6 *
7 * @default true
8 */
9 padded?: boolean;
10}
11/**
12 * Section card component.
13 *
14 * @see https://blueprintjs.com/docs/#core/components/section.section-card
15 */
16export declare const SectionCard: React.FC<SectionCardProps>;