Sha256: c28e440ebae813b9a3a27d055182a2275d454bafa6c3ec43a451ed451e5989ef
Contents?: true
Size: 1.25 KB
Versions: 12
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength,Metrics/MethodLength module Phlex module Icons module Tabler class BrandDocker < 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: 'M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z' ) s.path(d: 'M5 10h3v3h-3z') s.path(d: 'M8 10h3v3h-3z') s.path(d: 'M11 10h3v3h-3z') s.path(d: 'M8 7h3v3h-3z') s.path(d: 'M11 7h3v3h-3z') s.path(d: 'M11 4h3v3h-3z') s.path(d: 'M4.571 18c1.5 0 2.047 -.074 2.958 -.78') s.path(d: 'M10 16l0 .01') end end end end end end # rubocop:enable Layout/LineLength,Metrics/MethodLength
Version data entries
12 entries across 12 versions & 2 rubygems