8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import { HighlightText } from '@/registry/text/highlight';
|
|
|
|
export const HighlightTextDemo = () => {
|
|
return (
|
|
<HighlightText className="text-4xl font-semibold" text="Highlight Text" />
|
|
);
|
|
};
|