5
5
* found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
*/
7
7
8
- import React from 'react' ;
9
- import { renderToString } from 'react-dom/server' ;
10
8
import styled , { css , ThemeProps , DefaultTheme } from 'styled-components' ;
11
9
import { em , math } from 'polished' ;
12
10
import {
@@ -15,7 +13,6 @@ import {
15
13
focusStyles ,
16
14
getColor
17
15
} from '@zendeskgarden/react-theming' ;
18
- import ChevronIcon from '@zendeskgarden/svg-icons/src/16/chevron-down-stroke.svg' ;
19
16
import { Validation } from '../../types' ;
20
17
import { StyledHint } from '../common/StyledHint' ;
21
18
import { StyledLabel } from '../common/StyledLabel' ;
@@ -75,7 +72,13 @@ const colorStyles = ({
75
72
const placeholderColor = disabledForegroundColor ;
76
73
const readOnlyBackgroundColor = disabledBackgroundColor ;
77
74
const calendarPickerColor = getColor ( { theme, variable : 'foreground.subtle' } ) ;
78
- const calendarPickerIcon = renderToString ( < ChevronIcon color = { calendarPickerColor } /> ) ;
75
+ // HACK [jz]: removing the one-off `import { renderToString } from 'react-dom/server'` due to pitfalls
76
+ // https://react.dev/reference/react-dom/server/renderToString#removing-rendertostring-from-the-client-code
77
+ // const calendarPickerIcon = renderToString(<ChevronIcon color={calendarPickerColor} />);
78
+ const calendarPickerIcon = `
79
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" focusable="false" viewBox="0 0 16 16" aria-hidden="true" color="${ calendarPickerColor } ">
80
+ <path fill="currentColor" d="M12.688 5.61a.5.5 0 01.69.718l-.066.062-5 4a.5.5 0 01-.542.054l-.082-.054-5-4a.5.5 0 01.55-.83l.074.05L8 9.359l4.688-3.75z"/>
81
+ </svg>` ;
79
82
const calendarPickerBackgroundImage = `url("data:image/svg+xml,${ encodeURIComponent ( calendarPickerIcon ) } ")` ;
80
83
81
84
return css `
0 commit comments