UNPKG

phx-react

Version:

PHX REACT

7 lines 420 B
import * as React from 'react'; export default function Select({ children, className, label, ...other }) { return (React.createElement("div", { className: 'Input__wrapper' }, React.createElement("label", { className: 'Input__label', style: { marginTop: '-1em' } }, label), React.createElement("select", { ...other, className: className || 'select' }, children))); } //# sourceMappingURL=Select.js.map