lucid-ui
Version:
A UI component library from AppNexus.
16 lines • 505 B
JavaScript
import React from 'react';
import { TextFieldPlain } from '../../../index';
var style = {
marginBottom: '10px'
};
export default function TextFieldPlainExample() {
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(TextFieldPlain, {
style: style,
placeholder: "Plain Textfield example"
}), /*#__PURE__*/React.createElement(TextFieldPlain, {
isMultiLine: true,
rows: 5,
style: style,
placeholder: "Plain Textfield multiline example"
}));
}