@ozen-ui/kit
Version:
React component library
14 lines (13 loc) • 626 B
JavaScript
import { __assign } from "tslib";
import React, { forwardRef } from 'react';
import { useThemeProps } from '../../../../hooks/useThemeProps';
import { AutocompleteBaseInput } from '../../../AutocompleteBase';
var AutocompleteListCardInputRender = function (inProps, ref) {
var props = useThemeProps({
props: inProps,
name: 'AutocompleteListCardInput',
});
return React.createElement(AutocompleteBaseInput, __assign({}, props, { ref: ref }));
};
export var AutocompleteListCardInput = forwardRef(AutocompleteListCardInputRender);
AutocompleteListCardInput.displayName = 'AutocompleteListCardInput';