UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

14 lines (13 loc) 494 B
import { jsx as _jsx } from "react/jsx-runtime"; import SvgIcon from '@mui/material/SvgIcon'; import { IcShowLargeOutlined20Px as outlined } from '../../assets'; const variants = ['outlined']; const ShowLarge = ({ variant = 'outlined', ...rest }) => { if (variant === 'outlined') { return (_jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true })); } return null; }; ShowLarge.displayName = 'ShowLarge'; ShowLarge.variants = variants; export default ShowLarge;