Class: Phlex::Icons::Iconoir::BitcoinCircle
- Defined in:
- lib/phlex/icons/iconoir/icons/bitcoin_circle.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 |
# File 'lib/phlex/icons/iconoir/icons/bitcoin_circle.rb', line 2 def regular svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", stroke_width: @stroke_width, fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M9 12C9.00007 12.8416 9 15.107 9 16.3941C9 16.7255 9.26863 16.9943 9.59998 16.9962C12.5662 17.0136 15 17.072 15 14.5C15 11.7564 12 12 9 12ZM9 12L9.00003 7.60592C9.00003 7.27453 9.26867 7.00571 9.60005 7.00377C12.5662 6.98641 15 6.92799 15 9.5C15 12.2436 12 12 9 12Z", stroke: "currentColor" ) s.path( d: "M12 7L12 5.5", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12 18.5L12 17", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |
#solid ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/phlex/icons/iconoir/icons/bitcoin_circle.rb', line 39 def solid svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM15.75 9.5C15.75 8.73697 15.5678 8.0837 15.1673 7.56443C14.7698 7.04908 14.2196 6.74662 13.6352 6.56475C13.3606 6.4793 13.0634 6.41656 12.75 6.37066V5.5C12.75 5.08579 12.4142 4.75 12 4.75C11.5858 4.75 11.25 5.08579 11.25 5.5V6.25782C10.7764 6.24612 10.291 6.24929 9.81006 6.25243H9.81004L9.59566 6.25379C8.85407 6.25813 8.25003 6.85975 8.25003 7.60591V7.60593L8.25 12V12.0001V16.3941C8.25 17.1403 8.85404 17.7419 9.59559 17.7462L9.81003 17.7476C10.2909 17.7507 10.7764 17.7539 11.25 17.7422V18.5C11.25 18.9142 11.5858 19.25 12 19.25C12.4142 19.25 12.75 18.9142 12.75 18.5V17.6293C13.0634 17.5834 13.3606 17.5207 13.6352 17.4353C14.2196 17.2534 14.7698 16.9509 15.1673 16.4356C15.5677 15.9163 15.75 15.263 15.75 14.5C15.75 13.6694 15.5186 12.9776 15.0407 12.449C14.8822 12.2736 14.7049 12.1255 14.5145 12C14.7049 11.8745 14.8822 11.7264 15.0407 11.551C15.5186 11.0224 15.75 10.3306 15.75 9.5ZM12.9426 11.0513C12.393 11.1891 11.7378 11.2357 11.0012 11.2496C10.5848 11.2414 10.1634 11.2435 9.75001 11.2463L9.75003 7.75291C11.2172 7.74444 12.3752 7.7436 13.1895 7.997C13.5843 8.11985 13.8279 8.28395 13.9795 8.48048C14.128 8.67309 14.25 8.97702 14.25 9.5C14.25 10.0412 14.1064 10.3478 13.928 10.5451C13.7364 10.7571 13.4256 10.9303 12.9426 11.0513ZM11.0012 12.7504C10.5848 12.7586 10.1634 12.7565 9.75 12.7537V16.2471C11.2172 16.2556 12.3752 16.2564 13.1895 16.003C13.5842 15.8802 13.8279 15.7161 13.9795 15.5195C14.128 15.3269 14.25 15.023 14.25 14.5C14.25 13.9588 14.1064 13.6522 13.928 13.4549C13.7364 13.2429 13.4256 13.0697 12.9426 12.9487C12.393 12.8109 11.7378 12.7643 11.0012 12.7504Z", fill: "currentColor" ) end end |