mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-03 13:42:12 +08:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
export default function SecondaryText({ children }) {
|
|
return (
|
|
<span className="text-theme-800 dark:text-theme-200 text-xs">{children}</span>
|
|
);
|
|
}
|