Camera Arrow Up icon
Used in camera scenarios. The Camera Arrow Up 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 Camera Arrow Up 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 { CameraArrowUp24Regular, CameraArrowUp24Filled } from "@fluentui/react-icons";
export function Example() {
return <CameraArrowUp24Regular aria-label="Camera Arrow Up" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_camera_arrow_up_24_regular.svg" width="24" height="24" alt="Camera Arrow Up"> 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="M13.9247 2.50293C14.7225 2.50293 15.4607 2.9254 15.8647 3.6133L16.6793 4.99988H18.75C20.5449 4.99988 22 6.45496 22 8.24988V12.8096C21.5557 12.3832 21.051 12.0194 20.5 11.7322V8.24988C20.5 7.28338 19.7165 6.49988 18.75 6.49988H16.25C15.9841 6.49988 15.738 6.35906 15.6033 6.12976L14.5714 4.37305C14.4367 4.14375 14.1906 4.00293 13.9247 4.00293H10.1224C9.89892 4.00293 9.6892 4.1024 9.54793 4.27072L9.48325 4.36048L8.38913 6.14233C8.25271 6.3645 8.01071 6.49988 7.75 6.49988H5.25C4.2835 6.49988 3.5 7.28338 3.5 8.24988V17.7499C3.5 18.7164 4.2835 19.4999 5.25 19.4999H11.3135C11.4858 20.0333 11.7252 20.5367 12.0217 20.9999H5.25C3.45507 20.9999 2 19.5448 2 17.7499V8.24988C2 6.45496 3.45507 4.99988 5.25 4.99988H7.33042L8.205 3.57558C8.61425 2.90908 9.34026 2.50293 10.1224 2.50293H13.9247ZM12 7.99988C14.0017 7.99988 15.6981 9.30678 16.2825 11.1138C15.7826 11.2086 15.303 11.3605 14.8507 11.5626C14.4571 10.3648 13.3296 9.49988 12 9.49988C10.3431 9.49988 9 10.843 9 12.4999C9 13.9292 9.99953 15.125 11.3377 15.4265C11.1804 15.8944 11.0748 16.386 11.0278 16.8946C9.00987 16.4502 7.5 14.6514 7.5 12.4999C7.5 10.0146 9.51472 7.99988 12 7.99988ZM23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12C20.5376 12 23 14.4624 23 17.5ZM17 20.5C17 20.7761 17.2239 21 17.5 21C17.7761 21 18 20.7761 18 20.5V15.7071L19.6464 17.3536C19.8417 17.5488 20.1583 17.5488 20.3536 17.3536C20.5488 17.1583 20.5488 16.8417 20.3536 16.6464L17.8536 14.1464C17.6583 13.9512 17.3417 13.9512 17.1464 14.1464L14.6464 16.6464C14.4512 16.8417 14.4512 17.1583 14.6464 17.3536C14.8417 17.5488 15.1583 17.5488 15.3536 17.3536L17 15.7071V20.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/camera_arrow_up_24_regular.svg";Details
| Name | Camera Arrow Up |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_camera_arrow_up_24_regular.svg |
| Filled file | ic_fluent_camera_arrow_up_24_filled.svg |
| React components | CameraArrowUp24Regular, CameraArrowUp24Filled |
| License | MIT (© Microsoft Corporation) |