mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-03-15 18:18:16 -04: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 };
|