mirror of
https://github.com/movie-web/movie-web.git
synced 2025-03-06 05:07:42 +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>
|
||
|
);
|
||
|
}
|