tldraw
tldraw copied to clipboard
[Example Request]: How to hide the frame label of a Frame in custom UI
What's the example?
Is there any way to hide the frame label of a custom UI frame?
const overrides: CustomTLUiOverrides = {
frame: (app, frame) => {
return {
...frame,
}
},
}
editor.createShapes([
{
type: 'frame',
},
])
```
### Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Our SDK API doesn't support that explicitly at the moment but if you never want to show a frame label you should be able to use css
.tl-frame-heading {
display: none !important;
}