mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 07:25:44 +01:00
20 lines
458 B
TypeScript
20 lines
458 B
TypeScript
|
|
import React, { FC } from "react";
|
||
|
|
import styled from "styled-components";
|
||
|
|
import Icon from "../Icon";
|
||
|
|
|
||
|
|
type Props = {
|
||
|
|
name: string;
|
||
|
|
isHidden: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
const IconWithMarginLeft = styled(Icon)`
|
||
|
|
visibility: ${(props: Props) => (props.isHidden ? "hidden" : "visible")};
|
||
|
|
margin-left: 0.25em;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const SortIcon: FC<Props> = (props: Props) => {
|
||
|
|
return <IconWithMarginLeft name={props.name} isHidden={props.isHidden} />;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default SortIcon;
|