Sha256: 0ac5bf499b4e258fb4d5f5f16c1d4dddc93d0ee7ae7d8ba042d01e985db1d25c
Contents?: true
Size: 792 Bytes
Versions: 12
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandNextcloud < 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 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0') s.path(d: 'M4.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0') s.path(d: 'M19.5 12.5m-2.5 0a2.5 2.5 0 1 0 5 0a2.5 2.5 0 1 0 -5 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems