"use client"; import React from "react"; import { useTranslations } from "next-intl"; import { LightButton } from "@/design-system/base/button"; import { PlayButtonProps } from "../../types/player"; export function PlayButton({ isPlaying, onToggle, disabled, className }: PlayButtonProps) { const t = useTranslations("srt_player"); return ( {isPlaying ? t("pause") : t("play")} ); }