UNPKG

lucid-ui

Version:

A UI component library from AppNexus.

11 lines (10 loc) 464 B
import React from 'react'; import { TextFieldPlain } from '../../../index'; const style = { marginBottom: '10px', }; export default function TextFieldPlainExample() { return (React.createElement("div", null, React.createElement(TextFieldPlain, { style: style, placeholder: 'Plain Textfield example' }), React.createElement(TextFieldPlain, { isMultiLine: true, rows: 5, style: style, placeholder: 'Plain Textfield multiline example' }))); }