1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-10 17:47:41 +01:00
smov/src/components/utils/Lightbar.tsx

10 lines
186 B
TypeScript
Raw Normal View History

2023-08-20 17:59:46 +02:00
import "./Lightbar.css";
export function Lightbar(props: { className?: string }) {
return (
<div className={props.className}>
<div className="lightbar" />
</div>
);
}