Skip to content
Snippets Groups Projects
Commit b3ecc46e authored by chris's avatar chris
Browse files

add button component

parent 6641d22c
No related branches found
No related tags found
1 merge request!38Develop
import React from "react";
import styled from "styled-components";
import { ButtonStyles } from "wax-prosemirror-themes";
const ButtonStyled = styled.button`
opacity: ${props => (props.select ? 1 : 0.4)};
pointer-events: ${props => (props.select ? "default" : "none")};
color: ${props =>
props.isActive ? props.theme.colorPrimary : props.theme.colorButton};
&:hover {
color: ${props => (props.isActive ? props.theme.colorPrimary : "#000")};
}
${ButtonStyles};
`;
const Button = ({ view = {}, item }) => (
<ButtonStyled
type="button"
isActive={item.active && item.active(view.state)}
title={item.title}
disabled={item.enable && !item.enable(view.state)}
onMouseDown={e => {
e.preventDefault();
item.run(view.state, view.dispatch);
}}
select={item.select && item.select(view.state)}
>
{item.content}
</ButtonStyled>
);
export default Button;
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment