diff --git a/client/src/assets/icons/help.tsx b/client/src/assets/icons/help.tsx index f745414e83a..e6d3760857c 100644 --- a/client/src/assets/icons/help.tsx +++ b/client/src/assets/icons/help.tsx @@ -1,20 +1,47 @@ import React from 'react'; +const wrapper = { + display: 'grid', + placeItems: 'center', + position: 'relative', + padding: 'inherit' +} as React.CSSProperties; + +const speechBubbleIcon = { + position: 'absolute' +} as React.CSSProperties; + +const questionMarkIcon = { + position: 'absolute', + top: '-3px', + width: '9px' +} as React.CSSProperties; + function Help( props: JSX.IntrinsicAttributes & React.SVGProps ): JSX.Element { return ( <> - +
+ + + + + + +
); }