strivui
Version:
**StrivUI** is a modern, utility-first UI component library designed for building fast, beautiful, and accessible interfaces in **React** using both **TypeScript** and **JavaScript**.
13 lines (12 loc) • 527 B
TypeScript
import { ReactNode, HTMLAttributes } from "react";
type ContainerProps = HTMLAttributes<HTMLDivElement> & {
children?: ReactNode;
className?: string;
};
declare const Container: ({ children, className, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
type CardProps = HTMLAttributes<HTMLDivElement> & {
children?: ReactNode;
className?: string;
};
declare const Card: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
export { Container, Card, };