mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import { Mark } from '@chakra-ui/react';
|
|
|
|
export function HiWord({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<Mark bg="orange.100" borderRadius={5} px={2} mx={1}>
|
|
{children}
|
|
</Mark>
|
|
);
|
|
}
|