Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
387 Bytes
// @flow
import * as React from "react";
type Props = {|
+children?: React.Node,
|};
/**
* Used to seperate items within a Dropdown with a horizontal line
*/
function DropdownItemDivider(props: Props): React.Node {
return <div className="dropdown-divider">{props.children}</div>;
}
DropdownItemDivider.displayName = "Dropdown.ItemDivider";
export default DropdownItemDivider;