Sha256: 3d9381ef1c1242daaef08a65d6b275de0f54c325e37bddcecd7c6699ce69cd44
Contents?: true
Size: 873 Bytes
Versions: 12
Compression:
Stored size: 873 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCrunchbase < 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 19v-14a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z' ) s.path(d: 'M10.414 11.586a2 2 0 1 0 0 2.828') s.path(d: 'M15 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M13 7v6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems