UNPKG

@zohodesk/components

Version:

In this Package, we Provide Some Basic Components to Build Web App

12 lines 418 B
import React from 'react'; import { DropDownSeparator_propTypes } from "./props/propTypes"; import style from "../../DropDown/DropDownSeparator.module.css"; export default function DropDownSeparator(props) { let { customClass = '' } = props; return /*#__PURE__*/React.createElement("div", { className: `${style.separator} ${customClass}` }); } DropDownSeparator.propTypes = DropDownSeparator_propTypes;