import { h } from 'preact'; import PropTypes from 'prop-types'; import { defaultChildrenPropTypes } from '../../common-prop-types/default-children-prop-types'; export const Dropdown = (props) => { const { children, className, ...restOfProps } = props; return (