UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

9 lines (8 loc) 226 B
import { ReactNode } from "react"; import "./Theme.css"; import React from 'react'; interface ThemeProps { children: ReactNode; } declare const Theme: ({ children }: ThemeProps) => React.JSX.Element; export default Theme;