@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
17 lines (16 loc) • 512 B
text/typescript
import { IconProps } from "../Icon/type.mjs";
import "../Icon/index.mjs";
import { Ref } from "react";
import { SegmentedProps } from "antd";
//#region src/Segmented/type.d.ts
interface SegmentedProps$1 extends SegmentedProps {
glass?: boolean;
iconProps?: Omit<IconProps, 'icon'>;
padding?: string | number;
ref?: Ref<HTMLDivElement>;
shadow?: boolean;
variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { SegmentedProps$1 as SegmentedProps };
//# sourceMappingURL=type.d.mts.map