This is a follow-up to #3013.
Why only support a left aligned option? What if designers want to support right-aligned content, next?
Even if we don't support right-aligned content for now, something more like this would scale better in the future.
contentPosition?: 'bottom' | 'center' | 'right';
Then we could create an enum
export enum TooltipContentPosition {
bottom = 'bottom',
center = 'center',
right = 'right'
}
Looks like we already take this approach for the position property.
Originally posted by @dlabrecq in #3053