@yandex/ui
Version:
Yandex UI components
8 lines (7 loc) • 510 B
JavaScript
import React from 'react';
import { Textinput } from '@yandex-lego/components/Textinput/desktop/bundle';
export var Theme = function () { return (React.createElement(React.Fragment, null,
React.createElement("div", { style: { padding: 4 } },
React.createElement(Textinput, { theme: "normal", size: "m", defaultValue: "theme normal" })),
React.createElement("div", { style: { padding: 4 } },
React.createElement(Textinput, { theme: "websearch", defaultValue: "theme websearch" })))); };