@atlaskit/inline-edit
Version:
An inline edit displays a custom input component that switches between reading and editing on the same page.
14 lines (13 loc) • 535 B
TypeScript
import React from 'react';
import { type InlineEditableTextfieldProps } from './types';
/**
* __Inline editable textfield__
*
* An inline editable textfield {description}.
*
* - [Examples](https://atlassian.design/components/{packageName}/examples)
* - [Code](https://atlassian.design/components/{packageName}/code)
* - [Usage](https://atlassian.design/components/{packageName}/usage)
*/
declare const InlineEditableTextfield: (props: InlineEditableTextfieldProps) => React.JSX.Element;
export default InlineEditableTextfield;