Sha256: 95cec94bad0beb2ede8f3c286dca815f974ef874725e81e3d8b4dc42036b2b11
Contents?: true
Size: 1.02 KB
Versions: 14
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Robot < 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: 'M6 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z' ) s.path(d: 'M12 2v2') s.path(d: 'M9 12v9') s.path(d: 'M15 12v9') s.path(d: 'M5 16l4 -2') s.path(d: 'M15 14l4 2') s.path(d: 'M9 18h6') s.path(d: 'M10 8v.01') s.path(d: 'M14 8v.01') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
14 entries across 14 versions & 2 rubygems