mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
import * as React from 'react';
|
|
import ExpandIcon from './ExpandIcon';
|
|
|
|
interface Props {
|
|
}
|
|
|
|
const EmptyExpandLink: React.FC<Props> = _props => {
|
|
return <a className='sidebar-expand-link'><ExpandIcon isVisible={false} isExpanded={false}/></a>;
|
|
};
|
|
|
|
export default EmptyExpandLink;
|