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) => ( ); export const ChevronUpIcon = styled(Icon).attrs({ 'data-component-name': 'icons/ChevronUpIcon/ChevronUpIcon', })` path { fill: ${({ color }) => getCssColorVariable(color)}; } flex-shrink: 0; height: ${({ size }) => size || '16px'}; width: ${({ size }) => size || '16px'}; `;