Card UI icon
Used to represent any card or modal UI. The Card UI 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 Card UI 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 { CardUi24Regular, CardUi24Filled } from "@fluentui/react-icons";
export function Example() {
return <CardUi24Regular aria-label="Card UI" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_card_ui_24_regular.svg" width="24" height="24" alt="Card UI"> 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="M5.25 4C3.45507 4 2 5.45507 2 7.25V16.75C2 18.5449 3.45507 20 5.25 20H18.75C20.5449 20 22 18.5449 22 16.75V7.25C22 5.45507 20.5449 4 18.75 4H5.25ZM3.5 7.25C3.5 6.2835 4.2835 5.5 5.25 5.5H18.75C19.7165 5.5 20.5 6.2835 20.5 7.25V16.75C20.5 17.7165 19.7165 18.5 18.75 18.5H5.25C4.2835 18.5 3.5 17.7165 3.5 16.75V7.25ZM5 7.75C5 7.33579 5.33579 7 5.75 7H11.25C11.6642 7 12 7.33579 12 7.75C12 8.16421 11.6642 8.5 11.25 8.5H5.75C5.33579 8.5 5 8.16421 5 7.75ZM6 13C5.44772 13 5 13.4477 5 14V16C5 16.5523 5.44772 17 6 17H13C13.5523 17 14 16.5523 14 16V14C14 13.4477 13.5523 13 13 13H6ZM5 10.25C5 9.83579 5.33579 9.5 5.75 9.5H16.25C16.6642 9.5 17 9.83579 17 10.25C17 10.6642 16.6642 11 16.25 11H5.75C5.33579 11 5 10.6642 5 10.25Z" 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/card_ui_24_regular.svg";Details
| Name | Card UI |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_card_ui_24_regular.svg |
| Filled file | ic_fluent_card_ui_24_filled.svg |
| React components | CardUi24Regular, CardUi24Filled |
| License | MIT (© Microsoft Corporation) |