Sha256: 4af33dcee52aaef46bc03325d409b45e7be04be9287fd02d439f54ad6cf8cf56
Contents?: true
Size: 774 Bytes
Versions: 12
Compression:
Stored size: 774 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Tex < 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: 'M9 8v-1h-6v1') s.path(d: 'M6 15v-8') s.path(d: 'M21 15l-5 -8') s.path(d: 'M16 15l5 -8') s.path(d: 'M14 11h-4v8h4') s.path(d: 'M10 15h3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems