@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
18 lines (17 loc) • 464 B
text/typescript
import { FlexboxProps } from "../Flex/type.mjs";
import "../Flex/index.mjs";
import { Ref } from "react";
//#region src/Snippet/type.d.ts
interface SnippetProps extends FlexboxProps {
children: string;
copyable?: boolean;
language?: string;
prefix?: string;
ref?: Ref<HTMLDivElement>;
shadow?: boolean;
spotlight?: boolean;
variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { SnippetProps };
//# sourceMappingURL=type.d.mts.map