Sha256: c2a7bf56e9abf56ad996b8a1b1f7164b756af0d9b1cfc569ae9a8b82d798c43b
Contents?: true
Size: 895 Bytes
Versions: 12
Compression:
Stored size: 895 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FileDatabase < 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 12.75m-4 0a4 1.75 0 1 0 8 0a4 1.75 0 1 0 -8 0') s.path(d: 'M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75') s.path(d: 'M14 3v4a1 1 0 0 0 1 1h4') s.path( d: 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems