Sha256: 74305e9d01ca0ffd33968a9d42bb2e067c181b3585cfe8aa51290f1580e8a272
Contents?: true
Size: 822 Bytes
Versions: 18
Compression:
Stored size: 822 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceGamepad < 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: 'M2 6m0 2a2 2 0 0 1 2 -2h16a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-16a2 2 0 0 1 -2 -2z' ) s.path(d: 'M6 12h4m-2 -2v4') s.path(d: 'M15 11l0 .01') s.path(d: 'M18 13l0 .01') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems