Skip to Content
🎉 Nextra 4.0 is released. dimaMachina is looking for a new job or consulting.
  • 系统Logo 由组件 SystemLogo 来实现,它是一个 SFC 组件,可以通过 props 来设置它的样式。
import type { SVGProps } from 'react'; import { memo } from 'react'; const SystemLogo = memo((props: SVGProps<SVGSVGElement>) => { return IconLocalLogo({ ...props }); }); export default SystemLogo;
Note

代码位置:src/components/SystemLogo.tsx

具体实现原理参考 本地Icon

Last updated on