Files
shlink-web-client/src/utils/forms/FormText.tsx
2023-02-18 10:40:37 +01:00

6 lines
201 B
TypeScript

import type { FC, PropsWithChildren } from 'react';
export const FormText: FC<PropsWithChildren<unknown>> = ({ children }) => (
<small className="form-text text-muted d-block">{children}</small>
);