Untitled
3 years ago in Plain Text
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://miro.com/app/static/sdk.1.1.js"></script>
<script>
miro.onReady(() => {
miro.initialize({
extensionPoints: {
bottomBar: {
title: 'Some title',
svgIcon: '<circle cx="12" cy="12" r="9" fill="none" fill-rule="evenodd" stroke="currentColor" stroke-width="2"/>',
onClick: () => {
alert('Hi!')
}
}
}
})
})
</script>
</head>
</html>