Sha256: 6d01043692c374b65ed45986f9f4d52cacb25e0b470b9a5ec0df3054e0f621c8
Contents?: true
Size: 1.15 KB
Versions: 14
Compression:
Stored size: 1.15 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BrandGit < 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: 'M16 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M12 8m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M12 16m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M12 15v-6') s.path(d: 'M15 11l-2 -2') s.path(d: 'M11 7l-1.9 -1.9') s.path( d: 'M13.446 2.6l7.955 7.954a2.045 2.045 0 0 1 0 2.892l-7.955 7.955a2.045 2.045 0 0 1 -2.892 0l-7.955 -7.955a2.045 2.045 0 0 1 0 -2.892l7.955 -7.955a2.045 2.045 0 0 1 2.892 0z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems