Sha256: 8216f99440c60076b46bc2d6774b646a60f173c411988c4480d79f50ed0b4cbc
Contents?: true
Size: 950 Bytes
Versions: 14
Compression:
Stored size: 950 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCodesandbox < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M20 7.5v9l-4 2.25l-4 2.25l-4 -2.25l-4 -2.25v-9l4 -2.25l4 -2.25l4 2.25z' ) s.path(d: 'M12 12l4 -2.25l4 -2.25') s.path(d: 'M12 12l0 9') s.path(d: 'M12 12l-4 -2.25l-4 -2.25') s.path(d: 'M20 12l-4 2v4.75') s.path(d: 'M4 12l4 2l0 4.75') s.path(d: 'M8 5.25l4 2.25l4 -2.25') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems