UNPKG

@wulperstudio/cms

Version:
10 lines (9 loc) 304 B
import React from 'react'; export interface SectionCardPropsModel { title: string; showShadow: boolean; backgroundColor: string; showDivider?: boolean; children?: React.ReactNode | React.ReactNode[]; } export declare const SectionCard: React.FunctionComponent<SectionCardPropsModel>;