Sha256: 0feb47e452ae16bf3f7a361a022c41d21c7587dc293eba67f85fe95c0ed8c0b0
Contents?: true
Size: 855 Bytes
Versions: 14
Compression:
Stored size: 855 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAndroid < 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: 'M4 10l0 6') s.path(d: 'M20 10l0 6') s.path(d: 'M7 9h10v8a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-8a5 5 0 0 1 10 0') s.path(d: 'M8 3l1 2') s.path(d: 'M16 3l-1 2') s.path(d: 'M9 18l0 3') s.path(d: 'M15 18l0 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems