UNPKG

strivui

Version:

Type-safe, composable React UI toolkit with accessible, theme-aware components, design tokens, and tree-shakable architecture for scalable, maintainable applications.

13 lines (12 loc) 527 B
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, };