Source

components/_atoms/CustomColorBox/index.js

  1. import React from "react"
  2. import PropTypes from "prop-types"
  3. // chakra-ui
  4. import { Box, Button, Flex } from "@chakra-ui/react"
  5. /**
  6. * CustomColorsBox Component
  7. * @component
  8. * @author Braian D. Vaylet
  9. */
  10. const CustomColorsBox = ({ color }) => {
  11. const bRadius = "5px"
  12. if (color) {
  13. if (color.includes("-")) {
  14. const dualColor = color.split("-")
  15. return (
  16. <Flex
  17. as={Button}
  18. borderRadius={bRadius}
  19. p={0}
  20. direction="row"
  21. align="center"
  22. justify="space-between"
  23. w="1.25rem"
  24. h="1.25rem"
  25. mr={2}
  26. borderWidth="1px"
  27. borderColor="#ccc"
  28. boxShadow="sm"
  29. >
  30. <Box
  31. borderRadius={`${bRadius} 0 0 ${bRadius}`}
  32. w="50%"
  33. h="100%"
  34. style={{ backgroundColor: dualColor[0] }}
  35. />
  36. <Box
  37. borderRadius={`0 ${bRadius} ${bRadius} 0`}
  38. w="50%"
  39. h="100%"
  40. style={{ backgroundColor: dualColor[1] }}
  41. />
  42. </Flex>
  43. )
  44. } else {
  45. return (
  46. <Box
  47. p={0}
  48. w="1.25rem"
  49. h="1.25rem"
  50. borderRadius={bRadius}
  51. borderWidth="1px"
  52. borderColor="#ccc"
  53. style={{ backgroundColor: color }}
  54. mr={2}
  55. boxShadow="sm"
  56. />
  57. )
  58. }
  59. }
  60. }
  61. CustomColorsBox.propTypes = {
  62. color: PropTypes.string.isRequired,
  63. }
  64. export default CustomColorsBox