Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Gridicon } from '@automattic/components';
import clsx from 'clsx';
import { omit, startsWith } from 'lodash';
import PropTypes from 'prop-types';
const SharingButtonsPreviewAction = ( props ) => {
const { active, position, icon, children } = props;
const classes = clsx( 'sharing-buttons-preview-action', {
'is-active': active,
'is-top': startsWith( position, 'top' ),
'is-right': position.endsWith( '-right' ),
'is-bottom': startsWith( position, 'bottom' ),
'is-left': position.endsWith( '-left' ),
} );
return (
<button
type="button"
className={ classes }
{ ...omit( props, [ 'active', 'position', 'icon' ] ) }
>
{ icon && <Gridicon icon={ icon } size={ 18 } /> }
{ children }
</button>
);
};
SharingButtonsPreviewAction.propTypes = {
active: PropTypes.bool,
position: PropTypes.oneOf( [ 'top-left', 'top-right', 'bottom-left', 'bottom-right' ] ),
icon: PropTypes.string,
onClick: PropTypes.func,
};
SharingButtonsPreviewAction.defaultProps = {
active: true,
position: 'top-left',
onClick: () => {},
};
export default SharingButtonsPreviewAction;