Sha256: 43497531fada94299ceaaa01765da9e4e05f48062b64b8df855124efef001dfd
Contents?: true
Size: 1.25 KB
Versions: 14
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BrandBaidu < 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: 'M5 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0') s.path( d: 'M14.463 11.596c1.282 1.774 3.476 3.416 3.476 3.416s1.921 1.574 .593 3.636c-1.328 2.063 -4.892 1.152 -4.892 1.152s-1.416 -.44 -3.06 -.088c-1.644 .356 -3.06 .22 -3.06 .22s-2.055 -.22 -2.47 -2.304c-.416 -2.084 1.918 -3.638 2.102 -3.858c.182 -.222 1.409 -.966 2.284 -2.394c.875 -1.428 3.337 -2.287 5.027 .221z' ) s.path(d: 'M9 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0') s.path(d: 'M15 4.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0') s.path(d: 'M19 9.5m-1 0a1 1.5 0 1 0 2 0a1 1.5 0 1 0 -2 0') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems