mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
feat(component): shortcut style for tooltip (#7721)
 - New `shortcut` prop for `<Tooltip />` - single key ```tsx <Tooltip shortcut="T" /> ``` - multiple ```tsx <Tooltip shortcut={["⌘", "K"]} /> ``` - Round tooltip's arrow - Use new design system colors - Replace some usage - App sidebar switch - Editor mode switch - New tab (new)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export function isMacOS() {
|
||||
if (typeof navigator === 'undefined') return false;
|
||||
return navigator.userAgent.indexOf('Mac') !== -1;
|
||||
}
|
||||
Reference in New Issue
Block a user