raw3d-ui
Version:
A 3D UI component library built for the Log It Raw community, starting with a mechanical keycap button.
11 lines (10 loc) • 361 B
TypeScript
import React from 'react';
interface Alert3DProps {
title: string;
children: React.ReactNode;
variant?: 'info' | 'success' | 'warning' | 'error';
onClose?: () => void;
className?: string;
}
export declare const Alert3D: ({ title, children, variant, onClose, className, }: Alert3DProps) => import("react/jsx-runtime").JSX.Element;
export {};