Sha256: 6473e973cb516c146685ddc4c53c419595c2a62906b8450ac00e014247f90584
Contents?: true
Size: 668 Bytes
Versions: 12
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Trident < 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: 'M3 6l2 -2v3a7 7 0 0 0 14 0v-3l2 2') s.path(d: 'M12 21v-18l-2 2m4 0l-2 -2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems