funuicss
Version:
React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting b
10 lines (9 loc) • 309 B
TypeScript
import * as React from 'react';
interface ModalHeaderProps {
funcss?: string;
children?: React.ReactNode;
close?: React.ReactNode | '';
title?: React.ReactNode;
}
export default function ModalHeader({ funcss, children, close, title, ...rest }: ModalHeaderProps): React.JSX.Element;
export {};