Credit Card Clock icon
Used in scenarios involving payments. The Credit Card 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 Credit Card 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 { CreditCardClock24Regular, CreditCardClock24Filled } from "@fluentui/react-icons";
export function Example() {
return <CreditCardClock24Regular aria-label="Credit Card Clock" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_credit_card_clock_24_regular.svg" width="24" height="24" alt="Credit Card 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="M2 8.25C2 6.45507 3.45507 5 5.25 5H18.75C20.5449 5 22 6.45507 22 8.25V11H3.5V15.75C3.5 16.7165 4.2835 17.5 5.25 17.5H11C11 18.0163 11.0602 18.5185 11.1739 19H5.25C3.45507 19 2 17.5449 2 15.75V8.25ZM20.5 9.5V8.25C20.5 7.2835 19.7165 6.5 18.75 6.5H5.25C4.2835 6.5 3.5 7.2835 3.5 8.25V9.5H20.5ZM23 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"/></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/credit_card_clock_24_regular.svg";Details
| Name | Credit Card Clock |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_credit_card_clock_24_regular.svg |
| Filled file | ic_fluent_credit_card_clock_24_filled.svg |
| React components | CreditCardClock24Regular, CreditCardClock24Filled |
| License | MIT (© Microsoft Corporation) |