tiptop-editor
Version:
Notion-like editor built with Tiptap v3 and HeroUI
9 lines (8 loc) • 329 B
TypeScript
import { icons } from 'lucide-react';
export type IconProps = {
name: keyof typeof icons;
className?: string;
strokeWidth?: number;
};
export declare const Icon: import('react').MemoExoticComponent<({ name, className, strokeWidth }: IconProps) => import("react/jsx-runtime").JSX.Element | null>;
export default Icon;