import { h } from 'preact'; import PropTypes from 'prop-types'; import classNames from 'classnames/bind'; export const Icon = ({ src: InternalIcon, native, className, ...otherProps }) => { return ( ); }; Icon.displayName = 'Icon'; Icon.propTypes = { native: PropTypes.bool, className: PropTypes.string, src: PropTypes.elementType.isRequired, };