@yandex/ui
Version:
Yandex UI components
8 lines (7 loc) • 392 B
JavaScript
import React from 'react';
import { cnTextinput } from '../Textinput';
import './Textinput-Hint.css';
export var TextinputHint = function (_a) {
var leave = _a.leave, onAnimationEnd = _a.onAnimationEnd, children = _a.children, id = _a.id;
return (React.createElement("span", { className: cnTextinput('Hint', { leave: leave }), onAnimationEnd: onAnimationEnd, id: id }, children));
};