UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

7 lines (6 loc) 230 B
import React from 'react'; interface BoxProps extends React.HTMLAttributes<HTMLDivElement> { children?: React.ReactNode; } declare const Box: ({ children, style, ...props }: BoxProps) => React.JSX.Element; export default Box;