Skip to content

Commit

Permalink
Remove unused component
Browse files Browse the repository at this point in the history
  • Loading branch information
Alejandro Fernández Gómez committed Mar 27, 2020
1 parent 43045ea commit 5477c65
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,21 +81,6 @@ export const LogEntryActionsColumn: React.FC<LogEntryActionsColumnProps> = ({
);
};

interface CtaButtonProps {
onClick: () => void;
}
const CtaButton: React.FC<CtaButtonProps> = ({ children, onClick }) => {
return (
<EuiButtonEmpty
size="s"
onClick={onClick}
contentProps={{ style: { justifyContent: 'flex-start', flexGrow: 1, padding: 0 } }}
>
{children}
</EuiButtonEmpty>
);
};

const ActionsColumnContent = euiStyled(LogEntryColumnContent)`
overflow: hidden;
user-select: none;
Expand Down

0 comments on commit 5477c65

Please sign in to comment.