mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 21:14:30 +08:00
6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
const ShimmerLine = ({ active }: { active: boolean }) => {
|
|
return active ? <div className="logs-shimmering-loader w-full h-0.5"></div> : null
|
|
}
|
|
|
|
export default ShimmerLine
|