Card UI Info icon
Used to represent viewing additional information on any card or modal UI. The Card UI Info 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 Info 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 { CardUiInfo24Regular, CardUiInfo24Filled } from "@fluentui/react-icons";
export function Example() {
return <CardUiInfo24Regular aria-label="Card UI Info" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_card_ui_info_24_regular.svg" width="24" height="24" alt="Card UI Info"> 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="M16 9C19.866 9 23 12.134 23 16C23 19.866 19.866 23 16 23C12.134 23 9 19.866 9 16C9 12.134 12.134 9 16 9ZM16 10.5C12.9624 10.5 10.5 12.9624 10.5 16C10.5 19.0376 12.9624 21.5 16 21.5C19.0376 21.5 21.5 19.0376 21.5 16C21.5 12.9624 19.0376 10.5 16 10.5ZM16 15.75C16.4142 15.75 16.75 16.0858 16.75 16.5V18.5C16.75 18.9142 16.4142 19.25 16 19.25C15.5858 19.25 15.25 18.9142 15.25 18.5V16.5C15.25 16.0858 15.5858 15.75 16 15.75ZM13.75 2C15.5449 2 17 3.45507 17 5.25V8.06348C16.6723 8.02261 16.3387 8 16 8C15.832 8 15.6654 8.0064 15.5 8.0166V5.25C15.5 4.2835 14.7165 3.5 13.75 3.5H5.25C4.2835 3.5 3.5 4.2835 3.5 5.25V13.75C3.5 14.7165 4.2835 15.5 5.25 15.5H8.01758C8.00738 15.6654 8 15.832 8 16C8 16.3388 8.02358 16.6723 8.06445 17H5.25C3.45507 17 2 15.5449 2 13.75V5.25C2 3.45507 3.45507 2 5.25 2H13.75ZM16 12.5C16.5523 12.5 17 12.9477 17 13.5C17 14.0523 16.5523 14.5 16 14.5C15.4477 14.5 15 14.0523 15 13.5C15 12.9477 15.4477 12.5 16 12.5ZM8.75 9C9.16421 9 9.5 9.33579 9.5 9.75C9.5 10.1642 9.16421 10.5 8.75 10.5H6.25C5.83579 10.5 5.5 10.1642 5.5 9.75C5.5 9.33579 5.83579 9 6.25 9H8.75ZM12.75 5.5C13.1642 5.5 13.5 5.83579 13.5 6.25C13.5 6.66421 13.1642 7 12.75 7H6.25C5.83579 7 5.5 6.66421 5.5 6.25C5.5 5.83579 5.83579 5.5 6.25 5.5H12.75Z" 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_info_24_regular.svg";Details
| Name | Card UI Info |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_card_ui_info_24_regular.svg |
| Filled file | ic_fluent_card_ui_info_24_filled.svg |
| React components | CardUiInfo24Regular, CardUiInfo24Filled |
| License | MIT (© Microsoft Corporation) |