Sha256: 086c5d9b2a37483102d6375126432dd8c09b2965015946f4cd1e7306c8db8707
Contents?: true
Size: 667 Bytes
Versions: 12
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Bold < 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: 'M7 5h6a3.5 3.5 0 0 1 0 7h-6z') s.path(d: 'M13 12h1a3.5 3.5 0 0 1 0 7h-7v-7') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems