mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-21 19:39:17 +00:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import { Text, TextProps } from "@chakra-ui/react";
|
|
|
|
function Monospace(props: TextProps) {
|
|
return (
|
|
<Text as="span" className="monospace" {...props}>
|
|
{props.children}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
export { Monospace };
|