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 = ({ className, onClick }: IconProps & { onClick?: () => void }) => ( ); export const ChevronSortIcon = styled(Icon).attrs({ 'data-component-name': 'icons/ChevronSortIcon/ChevronSortIcon', })` path { fill: ${({ color }) => getCssColorVariable(color)}; } height: ${({ size }) => size}; width: ${({ size }) => size}; `;