vfi-2fa
Version:
- Headless (100% customizable, Bring-your-own-UI) - Auto out of the box, fully controllable API - Sorting (Multi and Stable) - Filters - Row Selection - Row Expansion - Column Ordering - Animatable - Resizable - Server-side/controlled data/state
12 lines (11 loc) • 338 B
TypeScript
import { CSSProperties } from "styled-components";
interface IFDataProps {
title: string;
handleModal?: () => void;
children?: any;
typeModal?: string;
component?: any;
style?: CSSProperties;
}
declare const ModalHeader: (props: IFDataProps) => import("react/jsx-runtime").JSX.Element;
export default ModalHeader;