mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
20 lines
548 B
JavaScript
20 lines
548 B
JavaScript
import JumpToTopButton from './JumpToTopButton'
|
|
import FloatDarkModeButton from './FloatDarkModeButton'
|
|
import SocialButton from './SocialButton'
|
|
|
|
/**
|
|
* 右下角悬浮按钮
|
|
* @param {*} param0
|
|
* @returns
|
|
*/
|
|
export default function RightFloatButtons(props) {
|
|
const { floatRightBottom } = props
|
|
return <div className="bottom-40 right-2 fixed justify-end space-y-2 z-20">
|
|
<FloatDarkModeButton />
|
|
<JumpToTopButton />
|
|
<SocialButton />
|
|
{/* 可扩展的右下角悬浮 */}
|
|
{floatRightBottom}
|
|
</div>
|
|
}
|