portainer/app/react/components/form-components/InputGroup/InputGroupAddon.tsx

10 lines
267 B
TypeScript
Raw Normal View History

import { PropsWithChildren } from 'react';
import { useInputGroupContext } from './InputGroup';
export function InputGroupAddon({ children }: PropsWithChildren<unknown>) {
useInputGroupContext();
return <span className="input-group-addon">{children}</span>;
}