Smart use of <hr> but is it appropriate?

To mimic a menu/list icon i inserted 3 <hr>(horizontal lines) inside a <button>, but i wonder, how appropriate is that, regarding semantics mostly.

<button>
  <hr />
  <hr />
  <hr />
</button>

With some styling it makes the perfect icon

Take a look at the definition of <hr> on MDN. I think it will answer your question.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.