UNPKG

@vs-form/vs-form

Version:

A schema-based form generator component for React using material-ui

10 lines (7 loc) 260 B
import { createElement } from 'react'; import Typography from '@material-ui/core/Typography'; const Text = (props) => { const { text, ...other } = props; return (createElement(Typography, Object.assign({}, other), text)); }; export { Text as a };