@yandex/ui
Version:
Yandex UI components
6 lines (5 loc) • 515 B
JavaScript
import React from 'react';
import { Textinput } from '@yandex-lego/components/Textinput/desktop/bundle';
export var Baseline = function () { return (React.createElement("div", { style: { display: 'inline-block', width: 330 } },
React.createElement(Textinput, { baseline: true, size: "m", view: "default", defaultValue: "Hello", style: { margin: 4, width: 150 } }),
React.createElement(Textinput, { baseline: true, size: "s", view: "default", defaultValue: "World", style: { margin: 4, width: 150 } }))); };