# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Radio < 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: 'M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5' ) s.path(d: 'M4 12h16') s.path(d: 'M7 12v-2') s.path(d: 'M17 16v.01') s.path(d: 'M13 16v.01') end end end end end end # rubocop:enable Layout/LineLength