@lunit/oui
Version:
Lunit Oncology UI components
13 lines (12 loc) • 414 B
TypeScript
import { SvgIconProps } from '@mui/material/SvgIcon';
declare const variants: readonly ["outlined"];
type Variant = (typeof variants)[number];
type IconProps = SvgIconProps & {
variant?: Variant;
};
declare const RefreshRight: {
({ variant, ...rest }: IconProps): import("react/jsx-runtime").JSX.Element | null;
displayName: string;
variants: readonly ["outlined"];
};
export default RefreshRight;