@blueprintjs/core
Version:
Core styles & components
17 lines (16 loc) • 511 B
TypeScript
import * as React from "react";
import { HTMLDivProps, Props } from "../../common/props";
export interface SectionCardProps extends Props, HTMLDivProps, React.RefAttributes<HTMLDivElement> {
/**
* Whether to apply visual padding inside the content container element.
*
* @default true
*/
padded?: boolean;
}
/**
* Section card component.
*
* @see https://blueprintjs.com/docs/#core/components/section.section-card
*/
export declare const SectionCard: React.FC<SectionCardProps>;