mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
8ad260d28a
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
import { IconBaseProps } from 'react-icons';
|
|
import { IoLink } from 'react-icons/io5';
|
|
|
|
export default function RotatedLink(linkProps: IconBaseProps) {
|
|
return <IoLink style={{ transform: 'rotate(-45deg)' }} {...linkProps} />;
|
|
}
|