Sha256: b39c207bfbc629298d9c7439f888519a700cfe891fb6b635e4f9e1a0aae83a57
Contents?: true
Size: 727 Bytes
Versions: 12
Compression:
Stored size: 727 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Database < 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: 'M12 6m-8 0a8 3 0 1 0 16 0a8 3 0 1 0 -16 0') s.path(d: 'M4 6v6a8 3 0 0 0 16 0v-6') s.path(d: 'M4 12v6a8 3 0 0 0 16 0v-6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems