overleaf/services/web/frontend/js/features/file-view/components/file-view-icons.js

13 lines
241 B
JavaScript
Raw Normal View History

import Icon from '../../../shared/components/icon'
export const LinkedFileIcon = props => {
return (
<Icon
type="external-link-square"
modifier="rotate-180"
className="linked-file-icon"
{...props}
/>
)
}