lib/phlex/icons/tabler/nurse.rb in phlex-icons-1.4.0 vs lib/phlex/icons/tabler/nurse.rb in phlex-icons-1.5.0

- old
+ new

@@ -1,13 +1,24 @@ # frozen_string_literal: true +# rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Nurse < Base def filled - raise NotImplementedError + svg( + **attrs, + xmlns: 'http://www.w3.org/2000/svg', + viewbox: '0 0 24 24', + fill: 'currentColor' + ) do |s| + s.path( + d: + 'M12.002 4c2.866 0 6.7 1.365 9.532 3.155a1 1 0 0 1 .45 1.024l-2 11a1 1 0 0 1 -.984 .821h-14a1 1 0 0 1 -.984 -.821l-2 -11a1 1 0 0 1 .45 -1.024c2.834 -1.792 6.724 -3.16 9.536 -3.155m-.002 5a1 1 0 0 0 -1 1v1h-1a1 1 0 0 0 -.993 .883l-.007 .117a1 1 0 0 0 1 1h1v1a1 1 0 0 0 .883 .993l.117 .007a1 1 0 0 0 1 -1v-1h1a1 1 0 0 0 .993 -.883l.007 -.117a1 1 0 0 0 -1 -1h-1v-1a1 1 0 0 0 -.883 -.993z' + ) + end end def outline svg( **attrs, @@ -19,15 +30,16 @@ stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path( d: - 'M12 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z' + 'M12 5c2.941 0 6.685 1.537 9 3l-2 11h-14l-2 -11c2.394 -1.513 6.168 -3.005 9 -3' ) s.path(d: 'M10 12h4') s.path(d: 'M12 10v4') end end end end end end +# rubocop:enable Layout/LineLength