Sha256: 9ec66ca80b0405cce19a95a4faaa31efe2c285b0ad7edc607c2364fe21c0c029
Contents?: true
Size: 720 Bytes
Versions: 14
Compression:
Stored size: 720 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Database < 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: '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
14 entries across 14 versions & 2 rubygems