Sha256: c3a3a5f4f6912fe58a5a715521ce696677b5bf69184d06f3df07233afd36b305
Contents?: true
Size: 965 Bytes
Versions: 18
Compression:
Stored size: 965 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandTripadvisor < 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: '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
18 entries across 18 versions & 2 rubygems