import React from 'react'; import { useTheme } from 'styled-components'; const DeleteIcon: React.FC<{ fill?: string }> = ({ fill }) => { const theme = useTheme(); const curentFill = fill || theme.editFilter.deleteIconColor; return ( {/* Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. */} ); }; export default DeleteIcon;