@atlaskit/textfield
Version:
A text field is an input that allows a user to write or edit text.
18 lines (17 loc) • 574 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
import { type TextfieldProps } from './types';
/**
* __Textfield__
*
* A text field is an input that allows a user to write or edit text.
*
* - [Examples](https://atlassian.design/components/textfield/examples)
* - [Code](https://atlassian.design/components/textfield/code)
* - [Usage](https://atlassian.design/components/textfield/usage)
*/
declare const Textfield: React.ForwardRefExoticComponent<React.PropsWithoutRef<TextfieldProps> & React.RefAttributes<unknown>>;
export default Textfield;