ERP-node/frontend/components/pop/dashboard/NoticeBanner.tsx

23 lines
567 B
TypeScript
Raw Normal View History

2026-01-07 14:31:04 +09:00
"use client";
import React from "react";
interface NoticeBannerProps {
text: string;
}
export function NoticeBanner({ text }: NoticeBannerProps) {
return (
<div className="pop-dashboard-notice-banner">
<div className="pop-dashboard-notice-label"></div>
<div className="pop-dashboard-notice-content">
<div className="pop-dashboard-notice-marquee">
<span className="pop-dashboard-notice-text">{text}</span>
<span className="pop-dashboard-notice-text">{text}</span>
</div>
</div>
</div>
);
}