You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
581 B
21 lines
581 B
import { Tooltip } from "@excalidraw/excalidraw/components/Tooltip"; |
|
import { shield } from "@excalidraw/excalidraw/components/icons"; |
|
import { useI18n } from "@excalidraw/excalidraw/i18n"; |
|
|
|
export const EncryptedIcon = () => { |
|
const { t } = useI18n(); |
|
|
|
return ( |
|
<a |
|
className="encrypted-icon tooltip" |
|
href="https://plus.excalidraw.com/blog/end-to-end-encryption" |
|
target="_blank" |
|
rel="noopener" |
|
aria-label={t("encrypted.link")} |
|
> |
|
<Tooltip label={t("encrypted.tooltip")} long={true}> |
|
{shield} |
|
</Tooltip> |
|
</a> |
|
); |
|
};
|
|
|