Archive Clock icon
The Archive Clock 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 Archive Clock 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 { ArchiveClock24Regular, ArchiveClock24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArchiveClock24Regular aria-label="Archive Clock" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_archive_clock_24_regular.svg" width="24" height="24" alt="Archive Clock"> 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="M23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM17.5 14C17.7761 14 18 14.2239 18 14.5V17H20C20.2761 17 20.5 17.2239 20.5 17.5C20.5 17.7761 20.2761 18 20 18H17.5C17.2239 18 17 17.7761 17 17.5V14.5C17 14.2239 17.2239 14 17.5 14Z" fill="currentColor"/>
<path d="M18.75 3C19.9926 3 21 4.00736 21 5.25V6.75C21 7.5301 20.603 8.21746 20 8.62109V11.498C19.5258 11.3003 19.0232 11.157 18.5 11.0762V9H5.5V17.25C5.5 18.4926 6.50736 19.5 7.75 19.5H11.3145C11.4869 20.0338 11.7276 20.5365 12.0244 21H7.75C5.67893 21 4 19.3211 4 17.25V8.62109C3.39701 8.21746 3 7.5301 3 6.75V5.25C3 4.00736 4.00736 3 5.25 3H18.75ZM5.25 4.5C4.83579 4.5 4.5 4.83579 4.5 5.25V6.75C4.5 7.16421 4.83579 7.5 5.25 7.5H18.75C19.1642 7.5 19.5 7.16421 19.5 6.75V5.25C19.5 4.83579 19.1642 4.5 18.75 4.5H5.25Z" fill="#242424"/>
<path d="M13.75 11C14.1587 11 14.4902 11.3269 14.499 11.7334C14.0873 11.9481 13.7017 12.2056 13.3477 12.5H10.25C9.83579 12.5 9.5 12.1642 9.5 11.75C9.5 11.3358 9.83579 11 10.25 11H13.75Z" fill="#242424"/></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/archive_clock_24_regular.svg";Details
| Name | Archive Clock |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_archive_clock_24_regular.svg |
| Filled file | ic_fluent_archive_clock_24_filled.svg |
| React components | ArchiveClock24Regular, ArchiveClock24Filled |
| License | MIT (© Microsoft Corporation) |