mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-26 19:56:41 +00:00
6 lines
201 B
TypeScript
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>
|
|
);
|