function Bars({ size = 14, light = false }) {
  const main = '#C9A84C';
  const echo = light ? 'rgba(242,215,138,.55)' : '#F2D78A';
  return (
    <svg width={size} height={Math.round(size * 0.93)} viewBox="0 0 64 64" fill="none" style={{ display: 'inline-block', flexShrink: 0 }}>
      <rect x="6" y="36" width="9" height="22" fill={echo}/>
      <rect x="9" y="32" width="9" height="26" fill={main}/>
      <rect x="22" y="22" width="9" height="36" fill={echo}/>
      <rect x="25" y="18" width="9" height="40" fill={main}/>
      <rect x="38" y="30" width="9" height="28" fill={echo}/>
      <rect x="41" y="26" width="9" height="32" fill={main}/>
    </svg>
  );
}
window.Bars = Bars;
