mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
13 lines
241 B
JavaScript
13 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}
|
||
|
/>
|
||
|
)
|
||
|
}
|