import { h, Component } from 'preact'; import * as style from './style.scss'; interface Props extends JSX.HTMLAttributes { large?: boolean; } interface State {} export default class Select extends Component { render(props: Props) { const { large, ...otherProps } = props; return (