import * as React from 'react' import cx from 'classnames' import { Button, ColorIndicator, type ButtonProps, type ColorIndicatorProps, } from '@ska/components' import './style.scss' export type ColorIndicatorButtonProps = { colorValue: ColorIndicatorProps['colorValue'] className?: string children?: React.ReactNode } & ButtonProps const ColorIndicatorButton: React.FC = ({ colorValue, className, children, ...props }) => { return ( ) } export default ColorIndicatorButton