import React from 'react'; import styled from 'styled-components'; import type { IconProps } from '@redocly/theme/icons/types'; import { getCssColorVariable } from '@redocly/theme/core/utils'; function Icon(props: IconProps) { return ( ); } export const NewChatIcon = styled(Icon).attrs({ 'data-component-name': 'icons/NewChatIcon/NewChatIcon', })` path { fill: ${({ color }) => getCssColorVariable(color)}; } height: ${({ size = '14px' }) => size}; width: ${({ size = '14px' }) => size}; `;