Sha256: d5f8ba2d817d97016041df143d534f6a9c2407d89f1e5989f9c02fc4e3c48b0e
Contents?: true
Size: 759 Bytes
Versions: 12
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Strikethrough < 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 12l14 0') s.path( d: 'M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems