This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
scoresaber-reloadedv3/src/components/player/player-data-point.tsx
Liam b5df147728
Some checks failed
Deploy SSR / deploy (push) Has been cancelled
add bsr, map and yt buttons to scores
2024-09-11 23:10:16 +01:00

14 lines
248 B
TypeScript

type Props = {
icon?: React.ReactNode;
children: React.ReactNode;
};
export default function PlayerDataPoint({ icon, children }: Props) {
return (
<div className="flex gap-1 items-center">
{icon}
{children}
</div>
);
}