UNPKG

@zohodesk/components

Version:

Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development

16 lines (15 loc) 504 B
import React from 'react'; import { DropDownSeparator_propTypes } from "./props/propTypes"; import { cn } from "@dot-system/css-utility"; import style from "./DropDownSeparator.module.css"; export default class DropDownSeparator extends React.Component { render() { let { customClass = '' } = this.props; return /*#__PURE__*/React.createElement("div", { className: cn(`${style.separator} ${customClass}`) }); } } DropDownSeparator.propTypes = DropDownSeparator_propTypes;