Sha256: a43551d919a47a31c82cae8b7baf9844a4a1e95b0b49a900f48e457a019fc4e3
Contents?: true
Size: 690 Bytes
Versions: 12
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandDatabricks < 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 17l9 5l9 -5v-3l-9 5l-9 -5v-3l9 5l9 -5v-3l-9 5l-9 -5l9 -5l5.418 3.01' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems