将 Markdown 编辑器替换为 TipTap WYSIWYG,新增帖子修订记录与 diff 展示;首页支持最新/回复排序与本地缓存;后台可配置编辑时限与锁定帖子;侧边栏整合板块导航并优化 Feed 布局。 Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
400 B
TypeScript
21 lines
400 B
TypeScript
import { Pin } from 'lucide-react';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
interface Props {
|
|
className?: string;
|
|
size?: number;
|
|
}
|
|
|
|
/** 置顶图钉标识 */
|
|
export default function PinnedIcon({ className, size = 16 }: Props) {
|
|
return (
|
|
<Pin
|
|
className={cn('post-pinned-icon', className)}
|
|
size={size}
|
|
fill="currentColor"
|
|
aria-label="置顶"
|
|
role="img"
|
|
/>
|
|
);
|
|
}
|