Sha256: 1aeb29185522a23c0e9343dd769da7cf6985aa1c09c761ceb28737367c6de122
Contents?: true
Size: 972 Bytes
Versions: 12
Compression:
Stored size: 972 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandTripadvisor < 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: 'M6.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0') s.path(d: 'M17.5 13.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0') s.path(d: 'M17.5 9a4.5 4.5 0 1 0 3.5 1.671l1 -1.671h-4.5z') s.path(d: 'M6.5 9a4.5 4.5 0 1 1 -3.5 1.671l-1 -1.671h4.5z') s.path(d: 'M10.5 15.5l1.5 2l1.5 -2') s.path(d: 'M9 6.75c2 -.667 4 -.667 6 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems