Sha256: b97b902e561825199195742eb05abd1038abeeeb7abfc2d221ed28faf62bab09
Contents?: true
Size: 636 Bytes
Versions: 12
Compression:
Stored size: 636 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Brackets < 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: 'M8 4h-3v16h3') s.path(d: 'M16 4h3v16h-3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems