@fidely-ui/react
Version:
Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps
10 lines (9 loc) • 397 B
TypeScript
import * as React from 'react';
import { BoxProps } from '../box/index';
export interface CommandInputProps extends Omit<BoxProps, 'direction'> {
shortcut?: string;
onOpen?: () => void;
placeholder?: string;
leftElement?: React.ReactNode;
}
export declare const CommandInput: React.ForwardRefExoticComponent<Omit<CommandInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;