Sha256: 847d1ef3f43cb6184f4fd18478548beb242eab3028e9f5937df4f0931432e0c1
Contents?: true
Size: 783 Bytes
Versions: 12
Compression:
Stored size: 783 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandBehance < 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: 'M3 18v-12h4.5a3 3 0 0 1 0 6a3 3 0 0 1 0 6h-4.5') s.path(d: 'M3 12l4.5 0') s.path(d: 'M14 13h7a3.5 3.5 0 0 0 -7 0v2a3.5 3.5 0 0 0 6.64 1') s.path(d: 'M16 6l3 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems