mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-31 02:00:07 +02:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
import MaterialIcon from '@/shared/components/material-icon'
|
|
|
|
export const LinkedFileIcon = props => {
|
|
return (
|
|
<MaterialIcon
|
|
type="open_in_new"
|
|
modifier="rotate-180"
|
|
className="align-middle linked-file-icon"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|