FortAwesome / Font-Awesome

The iconic SVG, font, and CSS toolkit
https://fontawesome.com
Other
73.63k stars 12.19k forks source link

Icon Request: icon-booking (brand) #5257

Open mabussg opened 9 years ago

mabussg commented 9 years ago

unnamed

hudri commented 8 years ago

+1 Useful for any tourism related site, in Europe booking.com has a much stronger market presence than Expedia or Kayak

moncho2 commented 8 years ago

i need it aswell and think a lot of other webmasters in hospitality managment need it aswell. can i help you with a svg-file of it?

pcha commented 8 years ago

Hello, I need it to a client, and I need to know in how many time you estimate you can do it. thank you very much, best regards

drarko commented 8 years ago

+1

alejandro021987 commented 8 years ago

+1

marcospgp commented 7 years ago

+1

rycka1983 commented 7 years ago

+1

IonDen commented 7 years ago

+1

Booking.com icon would be very useful!

gallomaf commented 7 years ago

+1 I need for http://www.agricolacampotenese.it/contatti.php

It will be very useful

dhddev commented 5 years ago

+1

mplodowski commented 5 years ago

+1

martynasjakucionis commented 5 years ago

+1

jonasburneika commented 5 years ago

+1

MDikkii commented 4 years ago

+1

ladeba commented 4 years ago

i need it too, pls font Awesome

piernik commented 3 years ago

Here is custom icon for booking.com:

{
    prefix: 'fab',
    iconName: 'booking',
    icon: [
      70, 70, [], 'e001',
      'M23.075 53.232H12.328V40.377c0-2.74 1.054-4.215 3.414-4.51h7.376a8.01 8.01 0 0 1 8.64 8.661c0 5.479-3.309 8.745-8.64 8.745zm-10.768-34.75V15.11c0-2.95 1.264-4.383 4.004-4.552h5.521c4.72 0 7.586 2.824 7.586 7.586 0 3.582-1.939 7.797-7.376 7.797h-9.694zm24.53 12.855l-1.939-1.096 1.686-1.475c1.981-1.686 5.268-5.521 5.268-12.117C41.852 6.533 34.013 0 21.895 0H6.512C2.903.124.032 3.069 0 6.68V64h22.169c13.487 0 22.169-7.334 22.169-18.713 0-6.111-2.803-11.38-7.544-14.014 M47.837 56.308c0-4.278 3.435-7.734 7.692-7.734a7.74 7.74 0 0 1 7.734 7.734c0 4.278-3.456 7.734-7.734 7.734s-7.692-3.456-7.692-7.734'
    ]
  }
lubucz commented 3 years ago

Here is custom icon for booking.com:

{
    prefix: 'fab',
    iconName: 'booking',
    icon: [
      70, 70, [], 'e001',
      'M23.075 53.232H12.328V40.377c0-2.74 1.054-4.215 3.414-4.51h7.376a8.01 8.01 0 0 1 8.64 8.661c0 5.479-3.309 8.745-8.64 8.745zm-10.768-34.75V15.11c0-2.95 1.264-4.383 4.004-4.552h5.521c4.72 0 7.586 2.824 7.586 7.586 0 3.582-1.939 7.797-7.376 7.797h-9.694zm24.53 12.855l-1.939-1.096 1.686-1.475c1.981-1.686 5.268-5.521 5.268-12.117C41.852 6.533 34.013 0 21.895 0H6.512C2.903.124.032 3.069 0 6.68V64h22.169c13.487 0 22.169-7.334 22.169-18.713 0-6.111-2.803-11.38-7.544-14.014 M47.837 56.308c0-4.278 3.435-7.734 7.692-7.734a7.74 7.74 0 0 1 7.734 7.734c0 4.278-3.456 7.734-7.734 7.734s-7.692-3.456-7.692-7.734'
    ]
  }

Great, how can i use it?

phr34k commented 1 year ago

Great, how can i use it?

Just to document this, I know this dates back to 2021. With the latest fontawesome (6) a full snippet how to do this is below. At least for me the documentation wasn't that intuative.

<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.js"></script>

<script>

const icons = {
    prefix: 'fab',
    iconName: 'booking',
    icon: [
      70, 70, [], 'e001',
      'M23.075 53.232H12.328V40.377c0-2.74 1.054-4.215 3.414-4.51h7.376a8.01 8.01 0 0 1 8.64 8.661c0 5.479-3.309 8.745-8.64 8.745zm-10.768-34.75V15.11c0-2.95 1.264-4.383 4.004-4.552h5.521c4.72 0 7.586 2.824 7.586 7.586 0 3.582-1.939 7.797-7.376 7.797h-9.694zm24.53 12.855l-1.939-1.096 1.686-1.475c1.981-1.686 5.268-5.521 5.268-12.117C41.852 6.533 34.013 0 21.895 0H6.512C2.903.124.032 3.069 0 6.68V64h22.169c13.487 0 22.169-7.334 22.169-18.713 0-6.111-2.803-11.38-7.544-14.014 M47.837 56.308c0-4.278 3.435-7.734 7.692-7.734a7.74 7.74 0 0 1 7.734 7.734c0 4.278-3.456 7.734-7.734 7.734s-7.692-3.456-7.692-7.734'
    ]
  };

window.FontAwesome.library.add(icons);
</script>

<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-airbnb"></i>
<i class="fa-brands fa-booking"></i>