Sha256: 0ae7c3a12a4837a611f2775f9bb51461d31ba8d5756dd20ae8304c09c5906171
Contents?: true
Size: 578 Bytes
Versions: 14
Compression:
Stored size: 578 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LetterW < Base def filled raise NotImplementedError end def outline svg( **attrs, 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' ) { |s| s.path(d: 'M4 4l4 16l4 -14l4 14l4 -16') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems