@engie-group/fluid-design-system-react
Version:
Fluid Design System React
12 lines (9 loc) • 523 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import React__default from 'react';
import { Utils } from '../../../utils/util.js';
const NJChatInputSuggestion = React__default.forwardRef(({ className, children, ...htmlProps }, forwardedRef) => {
const classes = Utils.classNames('nj-chat-input-suggestion', className);
return (jsx("button", { className: classes, ref: forwardedRef, ...htmlProps, children: children }));
});
NJChatInputSuggestion.displayName = 'NJChatInputSuggestion';
export { NJChatInputSuggestion };