LiveChannelEmpty.tsx 659 B

12345678910111213141516171819
  1. import { Radio } from 'lucide-react';
  2. export default function LiveChannelEmpty()
  3. {
  4. return (
  5. <section className="home__live home__live--empty" aria-labelledby="home-live-heading">
  6. <header className="home__section-head">
  7. <h2 id="home-live-heading" className="home__section-title">
  8. 라이브 방송 중
  9. </h2>
  10. </header>
  11. <div className="home__empty" role="status">
  12. <Radio className="home__empty-icon" aria-hidden="true" />
  13. <p className="home__empty-title">현재 방송 중인 채널이 없습니다</p>
  14. <p className="home__empty-desc">잠시 후 새로고침하여 다시 확인해 주세요</p>
  15. </div>
  16. </section>
  17. );
  18. }