mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-02 12:47:41 +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;
|