Skip to content

Commit 880ff37

Browse files
authored
fix(forms): remove renderToString for the calendar picker icon (#2009)
1 parent 613f9a4 commit 880ff37

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

packages/forms/src/styled/text/StyledTextInput.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
* found at http://www.apache.org/licenses/LICENSE-2.0.
66
*/
77

8-
import React from 'react';
9-
import { renderToString } from 'react-dom/server';
108
import styled, { css, ThemeProps, DefaultTheme } from 'styled-components';
119
import { em, math } from 'polished';
1210
import {
@@ -15,7 +13,6 @@ import {
1513
focusStyles,
1614
getColor
1715
} from '@zendeskgarden/react-theming';
18-
import ChevronIcon from '@zendeskgarden/svg-icons/src/16/chevron-down-stroke.svg';
1916
import { Validation } from '../../types';
2017
import { StyledHint } from '../common/StyledHint';
2118
import { StyledLabel } from '../common/StyledLabel';
@@ -75,7 +72,13 @@ const colorStyles = ({
7572
const placeholderColor = disabledForegroundColor;
7673
const readOnlyBackgroundColor = disabledBackgroundColor;
7774
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>`;
7982
const calendarPickerBackgroundImage = `url("data:image/svg+xml,${encodeURIComponent(calendarPickerIcon)}")`;
8083

8184
return css`

0 commit comments

Comments
 (0)