react-tooltip icon indicating copy to clipboard operation
react-tooltip copied to clipboard

[Feature request] make arrow size customizable

Open FedeTommi opened this issue 3 years ago • 0 comments

Would it be possible to add a new prop "arrowSize" to change the size of the arrow? like so:

.${uuid}.place-bottom::after {
       border-left: ${arrowSize}px solid transparent;
       border-right: ${arrowSize}px solid transparent;
       top: -6px;
       left: 50%;
       margin-left: -${arrowSize}px;
       border-bottom-color: ${arrowColor};
       border-bottom-style: solid;
       border-bottom-width: 6px;
   }

FedeTommi avatar Mar 30 '22 00:03 FedeTommi