UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

10 lines (9 loc) 311 B
import React, { ReactNode } from "react"; export interface CardProps { title?: string | ReactNode; titleStyle?: React.CSSProperties; children: ReactNode; style?: object; } export declare const Card: ({ children, title, style, titleStyle, }: CardProps) => React.JSX.Element; export default Card;