UNPKG

react-planner-viewer

Version:

react-planner-viewer is a React Component for view plans builded with react-planner in 2D mode

17 lines (13 loc) 363 B
import React from 'react'; import Button from './button'; const STYLE = { borderColor: "#adadad", backgroundColor: "#e6e6e6" }; const STYLE_HOVER = { backgroundColor: "#d4d4d4", borderColor: "#8c8c8c" }; export default function CancelButton({children, ...rest}) { return <Button style={STYLE} styleHover={STYLE_HOVER} {...rest}>{children}</Button> }