Sha256: a6f5466206564fa60348be079aa2263c54787d46a882024957c59417b953815a
Contents?: true
Size: 866 Bytes
Versions: 18
Compression:
Stored size: 866 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCrunchbase < 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: '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
18 entries across 18 versions & 2 rubygems