@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 403 B
TypeScript
import type { SegmentedProps as AntdSegmentedProps } from 'antd';
import type { Ref } from 'react';
import type { IconProps } from "../Icon";
export interface SegmentedProps extends AntdSegmentedProps {
glass?: boolean;
iconProps?: Omit<IconProps, 'icon'>;
padding?: string | number;
ref?: Ref<HTMLDivElement>;
shadow?: boolean;
variant?: 'filled' | 'outlined' | 'borderless';
}