Sha256: c63ecfe634afd9701f0d2e8ae39febfb7a8adfe1b75c5ee4a7751b8d2dcfc7ce
Contents?: true
Size: 694 Bytes
Versions: 14
Compression:
Stored size: 694 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAirtable < 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 10v8l7 -3v-2.6z') s.path(d: 'M3 6l9 3l9 -3l-9 -3z') s.path(d: 'M14 12.3v8.7l7 -3v-8z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems