mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
f065a7a909
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
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}
|
|
/>
|
|
)
|
|
}
|