Sha256: 7b49cb699cd3a6b18af8b257704b2a5c8fdabcf9db0ab0e0fb76990f6c91fd0c
Contents?: true
Size: 937 Bytes
Versions: 12
Compression:
Stored size: 937 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DatabaseShare < 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: 'M4 6c0 1.657 3.582 3 8 3s8 -1.343 8 -3s-3.582 -3 -8 -3s-8 1.343 -8 3' ) s.path(d: 'M4 6v6c0 1.657 3.582 3 8 3c.361 0 .716 -.009 1.065 -.026') s.path(d: 'M20 13v-7') s.path(d: 'M4 12v6c0 1.657 3.582 3 8 3') s.path(d: 'M16 22l5 -5') s.path(d: 'M21 21.5v-4.5h-4.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems