mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
17 lines
482 B
TypeScript
17 lines
482 B
TypeScript
import * as React from 'react'
|
|
import { TextInput } from '../../../Input'
|
|
import { Item } from '../../../../types'
|
|
|
|
export const PopupTextInput = ({ dataField, placeholder, style, item }:
|
|
{
|
|
dataField: string,
|
|
placeholder: string,
|
|
style?: string,
|
|
item?: Item
|
|
}) => {
|
|
|
|
return (
|
|
<TextInput defaultValue={item?.text ? item.text : ""} dataField={dataField} placeholder={placeholder} inputStyle={style} type='text'></TextInput>
|
|
)
|
|
}
|