Sha256: d9b4cfb5894c2f56763d75b08a1d21ecdcb22bd1f9d473d00600a52b7a275232
Contents?: true
Size: 662 Bytes
Versions: 12
Compression:
Stored size: 662 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LineDashed < Base def filled raise NotImplementedError end def outline 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: 'M5 12h2') s.path(d: 'M17 12h2') s.path(d: 'M11 12h2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems