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