Sha256: 894eb2ce2ff9eac978e84e88c8bd8e6eb681ee4437bb5425ddeef56ab64f8fb4
Contents?: true
Size: 862 Bytes
Versions: 12
Compression:
Stored size: 862 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAndroid < Base def filled raise NotImplementedError end def outline svg( class: classes, 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
12 entries across 12 versions & 2 rubygems