UNPKG

@grandlinex/react-components

Version:
14 lines (13 loc) 361 B
import React from 'react'; import { INames } from '@grandlinex/react-icons'; export type IcTexProps = { icon: INames | null; text: string; }; export default function IconTextSel(props: { sel?: IcTexProps; disabled?: boolean; onChange: (ev: IcTexProps | null) => void; className?: string; placeholder?: string; }): React.JSX.Element;