import cn from 'classnames'; import { forwardRef } from 'react'; import { extractSupportProps, WithSupportProps } from '@snack-uikit/utils'; import { APPEARANCE, HTML_TYPE, SIZE, TARGET } from '../../constants'; import { ButtonPrivate } from '../../helperComponents'; import { CommonButtonProps } from '../../types'; import { extractCommonButtonProps } from '../../utils'; import styles from './styles.module.scss'; export type ButtonFilledProps = WithSupportProps>; export const ButtonFilled = forwardRef( ( { className, size = SIZE.S, target = TARGET.Blank, type = HTML_TYPE.Button, appearance = APPEARANCE.Primary, tabIndex, fullWidth = false, ...rest }, ref, ) => ( ), );