mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
e7635dec5c
GitOrigin-RevId: fbb23b32c47edbe5a22badc627318accbd09e82a
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}
|
|
/>
|
|
)
|
|
}
|