Sha256: d427671f8b3d40b8af8a68cd8de6e2c33a3b85241f1be86e6f093fd13b0747e1
Contents?: true
Size: 758 Bytes
Versions: 26
Compression:
Stored size: 758 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Hexagon < Base def view_template svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path( d: 'M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems