file-image
v0.7.0
Customize icon
Set your custom size or color and download the icon as SVG or PNG image.
Width
Height
Color
Get SVG
Get PNG
Using as SVG
Copy and paste the following SVG code into your HTML file where you want the icon to appear.
Then, you can customize the SVG attributes, such as size or color, using inline styling or CSS classes.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="1em" height="1em">
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12.9834 3L12.9834 6.00832C12.9834 6.00832 12.9834 9.01664 15.9917 9.01664L19 9.01664M8 3C5 3 5 6 5 6L5 18C5 18 5 21 8 21L16 21C19.0083 21 19 18 19 18L19 8L14 3L8 3ZM8.5 11.5C8.5 10.6716 9.17157 10 10 10C10.8284 10 11.5 10.6716 11.5 11.5C11.5 12.3284 10.8284 13 10 13C9.17157 13 8.5 12.3284 8.5 11.5ZM8 21L14 15C15 14 16 14 17 15L19 17" />
</svg>
Using with React
Install
@josemi-icons/react
and import the icon component in your React application:
import {FileImageIcon} from "@josemi-icons/react";
const MyComponent = () => {
return (
<FileImageIcon />
);
};
Using with CSS
Install
@josemi-icons/css
and include the icon as a CSS class:
<i class="ji-file-image"></i>