import { h, Component } from 'preact'; import * as style from './style.css'; import 'add-css:./style.css'; import { Arrow } from 'client/lazy-app/icons'; interface Props extends preact.JSX.HTMLAttributes { large?: boolean; } interface State {} export default class Select extends Component { render(props: Props) { const { large, ...otherProps } = props; return (
{/* @ts-ignore - TS bug https://github.com/microsoft/TypeScript/issues/16019 */}