import { Icon, IIconProps } from '@stoplight/ui-kit'; import * as React from 'react'; export interface ICaret { isExpanded: boolean; style?: React.CSSProperties; size?: IIconProps['iconSize']; } export const Caret: React.FunctionComponent = ({ style, size, isExpanded }) => ( );