@lunit/oui
Version:
Lunit Oncology UI components
10 lines (9 loc) • 434 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import clsx from 'clsx';
import { StyledListItemCaption } from './ListItemCaption.styled';
export const ListItemCaptionClassName = 'ListItemCaption';
const ListItemCaption = (props) => {
const { className, ...otherProps } = props;
return (_jsx(StyledListItemCaption, { ...otherProps, className: clsx(ListItemCaptionClassName, className) }));
};
export default ListItemCaption;