/* global React */
// Section divider — a hairline rule constrained to the content column,
// matching the left and right margins of the prose text rather than
// running full-bleed edge to edge.
function SectionRule() {
  return (
    <div className="section-rule" aria-hidden="true">
      <div className="page">
        <div className="section-rule__line" />
      </div>
    </div>
  );
}

window.SectionRule = SectionRule;