;(function () {
/* Chev — small right-chevron icon. */

const Chev = ({ size = 14, color = colors.muted2 }) => (
  <svg width={size} height={size} viewBox="0 0 16 16" fill="none">
    <path
      d="M6 4l4 4-4 4"
      stroke={color}
      strokeWidth={1.5}
      strokeLinecap="round"
      strokeLinejoin="round"
    />
  </svg>
);

Object.assign(window, { Chev });
})();
