Book Contacts icon
Used as a contact collection. The Book Contacts icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Book Contacts icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { BookContacts24Regular, BookContacts24Filled } from "@fluentui/react-icons";
export function Example() {
return <BookContacts24Regular aria-label="Book Contacts" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_book_contacts_24_regular.svg" width="24" height="24" alt="Book Contacts"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 2C5.11929 2 4 3.11929 4 4.5V19.5C4 20.8807 5.11929 22 6.5 22H19.25C19.6642 22 20 21.6642 20 21.25C20 20.8358 19.6642 20.5 19.25 20.5H6.5C5.94772 20.5 5.5 20.0523 5.5 19.5H19.25C19.6642 19.5 20 19.1642 20 18.75V4.5C20 3.11929 18.8807 2 17.5 2H6.5ZM5.5 18V4.5C5.5 3.94772 5.94772 3.5 6.5 3.5H17.5C18.0523 3.5 18.5 3.94772 18.5 4.5V18H5.5ZM14 8C14 9.10457 13.1046 10 12 10C10.8954 10 10 9.10457 10 8C10 6.89543 10.8954 6 12 6C13.1046 6 14 6.89543 14 8ZM15.5 12.5C15.5 13.7452 14.5 15 12 15C9.5 15 8.5 13.7499 8.5 12.5C8.5 11.6716 9.17157 11 10 11H14C14.8284 11 15.5 11.6716 15.5 12.5Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/book_contacts_24_regular.svg";Details
| Name | Book Contacts |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_book_contacts_24_regular.svg |
| Filled file | ic_fluent_book_contacts_24_filled.svg |
| React components | BookContacts24Regular, BookContacts24Filled |
| License | MIT (© Microsoft Corporation) |