mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-07 03:11:52 +00:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
import Icon from '../../../shared/components/icon'
|
|
|
|
export const LinkedFileIcon = props => {
|
|
return (
|
|
<Icon
|
|
type="external-link-square"
|
|
modifier="rotate-180"
|
|
className="linked-file-icon"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|