import { Flex, Icon } from '@stoplight/mosaic'; import * as React from 'react'; import { CARET_ICON_SIZE } from '../../consts'; export interface ICaret { isExpanded: boolean; } export const Caret: React.FunctionComponent = ({ isExpanded }) => ( );