File size: 523 Bytes
2eb87e3
 
 
 
 
 
d22337b
2eb87e3
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Clock3 } from "lucide-react";

/** 扫描时长提示:小 note 样式(fish No.916)—— 时钟小图标 + 一行小字,无卡片无边框。 */
export function ScanDurationNotice({ className = "" }: { className?: string }) {
  return (
    <p
      className={`flex items-center justify-center gap-1.5 text-xs text-ink-tertiary ${className}`}
      role="note"
    >
      <Clock3 size={13} strokeWidth={1.8} className="shrink-0" />
      <span>A full scan usually takes 12+ hours.</span>
    </p>
  );
}