UNPKG

raw3d-ui

Version:

A 3D UI component library built for the Log It Raw community, starting with a mechanical keycap button.

10 lines (9 loc) 304 B
import React from 'react'; interface Modal3DProps { children: React.ReactNode; className?: string; isOpen: boolean; onClose: () => void; } export declare const Modal3D: ({ children, className, isOpen, onClose }: Modal3DProps) => import("react/jsx-runtime").JSX.Element | null; export {};