mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-10 17:47:41 +01:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
|
import "./Lightbar.css";
|
||
|
|
||
|
export function Lightbar(props: { className?: string }) {
|
||
|
return (
|
||
|
<div className={props.className}>
|
||
|
<div className="lightbar" />
|
||
|
</div>
|
||
|
);
|
||
|
}
|