Class: Phlex::Icons::Iconoir::RotateCameraLeft
- Defined in:
- lib/phlex/icons/iconoir/icons/rotate_camera_left.rb
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Phlex::Icons::Iconoir::Base
Instance Method Details
#regular ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/phlex/icons/iconoir/icons/rotate_camera_left.rb', line 2 def regular svg( class: @class, width: @width, height: @height, stroke_width: @stroke_width, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M2.05078 3V7.49704C2.05078 7.77482 2.27596 8 2.55374 8V8C2.75366 8 2.93357 7.88104 3.01963 7.70059C4.62737 4.32948 8.06703 2 12.0508 2C17.2361 2 21.4997 5.94668 22.0014 11", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M22.0014 21V16.503C22.0014 16.2252 21.7762 16 21.4984 16V16C21.2985 16 21.1186 16.119 21.0326 16.2994C19.4248 19.6705 15.9852 22 12.0014 22C6.81606 22 2.55251 18.0533 2.05078 13", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M6 16.4V9.39365C6 9.06228 6.26863 8.79365 6.6 8.79365H7.77283C7.97677 8.79365 8.16674 8.69006 8.2772 8.51863L9.7228 6.27502C9.83326 6.10359 10.0232 6 10.2272 6H13.7728C13.9768 6 14.1667 6.10359 14.2772 6.27502L15.7228 8.51863C15.8333 8.69006 16.0232 8.79365 16.2272 8.79365H17.4C17.7314 8.79365 18 9.06228 18 9.39365V16.4C18 16.7314 17.7314 17 17.4 17H6.6C6.26863 17 6 16.7314 6 16.4Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |