mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-06 15:23:40 +01:00
6 lines
153 B
React
6 lines
153 B
React
![]() |
export default function PrimaryText({ children }) {
|
||
|
return (
|
||
|
<span className="text-theme-800 dark:text-theme-200 text-sm">{children}</span>
|
||
|
);
|
||
|
}
|