Sha256: 20844c2cf39ddd482150c39bda63447886ecdfd45d2071067a56c18a9613db7e
Contents?: true
Size: 852 Bytes
Versions: 14
Compression:
Stored size: 852 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceNintendo < 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: 'M10 20v-16h-3a4 4 0 0 0 -4 4v8a4 4 0 0 0 4 4h3z') s.path(d: 'M14 20v-16h3a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-3z') s.circle(cx: '17.5', cy: '15.5', r: '1', fill: 'currentColor') s.circle(cx: '6.5', cy: '8.5', r: '1', fill: 'currentColor') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems