Sha256: 5c75801b008b10bb06c68b0ed82a5fe4bfb76154d414d1bcfa4585308ecbb307
Contents?: true
Size: 832 Bytes
Versions: 18
Compression:
Stored size: 832 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceAirpodsCase < 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: 'M21 10h-18') s.path( d: 'M3 4m0 4a4 4 0 0 1 4 -4h10a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4z' ) s.path(d: 'M7 10v1.5a1.5 1.5 0 0 0 1.5 1.5h7a1.5 1.5 0 0 0 1.5 -1.5v-1.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems