Hello Everyone,
I want to know how to change height and width of the Sidetab.
And one more question when I click on the Sidetab, it shows a white outline around it, how should I remove it.
I am using @typeform/embed-react npm package.
This is my code
import React from 'react'
import { Sidetab } from '@typeform/embed-react'
const Feedback = () => {
return (
<div>
<Sidetab id="<form-id>" className=" " buttonText="Feedback" autoClose="2000" buttonColor="#3B82F6" height="100px" />
</div>
)
}