mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 03:23:02 +00:00
11 lines
411 B
TypeScript
11 lines
411 B
TypeScript
import { RiErrorWarningLine } from 'react-icons/ri';
|
||
|
||
export function SegmentTryOfficialPlayer({ className = '' }: { className?: string }) {
|
||
return (
|
||
<div className={`alert alert-warning ${className}`}>
|
||
<RiErrorWarningLine className="text-2xl" />
|
||
<p>尝试用下载音乐的设备播放一次看看,如果官方客户端都无法播放,那解锁肯定会失败哦。</p>
|
||
</div>
|
||
);
|
||
}
|