import React from 'react'; import { useTheme } from 'styled-components'; const CancelIcon: React.FC = () => { const theme = useTheme(); return ( Cancel A line styled icon from Orion Icon Library. ); }; export default CancelIcon;