Skip to content

Bookingjini-Labs/bookingjini-icons

Repository files navigation

Bookingjini Logo

Bookingjini Icons


Official open source SVG icon library with over 50+ icons.
Explore Bookingjini Icons »

bookingjini-icons-banner

BookingJini Icons is an official open source SVG icon library that caters to the hospitality industry. With over 50+ icons carefully curated by the talented creators from BookingJini, this collection provides a comprehensive range of visually appealing and relevant imagery for your websites and applications.

BookingJini Icons ✅

Find hospitality related icons, curated by creators from Bookingjini

bookingjini-icons-banner

GirlScript Summer of Code 2023 - Join Us!

GSSoC Logo Light GSSoC Logo Dark

BookingJini Icons is thrilled to announce that we are open for participation in GirlScript Summer of Code 2023 (GSSoC'23)! We invite aspiring developers, designers, and open-source enthusiasts to join our project and make a meaningful impact in the hospitality industry. GSSoC'23 offers a unique opportunity to gain practical experience, collaborate with mentors, and contribute to real-world projects like BookingJini Icons. Whether you're interested in coding, UI/UX design, documentation, or project management, there's a place for you in our vibrant community. Come join us and be a part of the BookingJini Icons revolution!

Feel free to customize the paragraph to suit the specific requirements or tone of your project.

How to use BookingJini Icons

1. With HTML file:

  • a. In the html file, paste the following line inside the head tag:
    <link href="https://cdn.jsdelivr.net/gh/bookingjini-labs/bookingjini-icons@1.0.0/font-css.css" rel="stylesheet">
  • b. To use the icons, click on your preferred icons, and paste inside your body tag.
    <body>
        <i class="jini-people1"></i>
    </body>

2. With React Apps:

Go to React Icons Docs

Contributors✨

We would like to express our heartfelt gratitude to the amazing contributors who have made this project possible. Their dedication and support have been invaluable in shaping and improving BookingJini Icons. We couldn't have come this far without them.

How to Start Contributing 🚀

  1. Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

    step-1

  2. Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

    step-2

  3. Open a terminal and run the following git command:

    git clone "url you just copied"

    where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url. For example:

    git clone https://github.com/your_username/bookingjini-icons.git
  4. Now create a branch using the 'git switch' command in repository directory:

    git switch -c your-new-branch-name
  5. Make necessary changes and commit those changes. Add those changes to the branch you just created using the 'git add' command:

    git add .

    Now commit those changes using the 'git commit' command:

    git commit -m "Add your title here"
  6. Push your changes using the command git push:

    git push -u origin your-branch-name

    replacing your-branch-name with the name of the branch you created earlier.

  7. Submit your changes for review

    step-3

    If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button. Now add appropriate title and comment on it and submit the pull request.