All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Table.cells.ListTextCell.ListTextCellTrigger.jsx Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import React from 'react'
import PropTypes from 'prop-types'
import onClickOutsideHOC from 'react-onclickoutside'

import { triggerClassName } from './utils'

function Component({ label, labelDashed, forwardedRef }) {
    return {label}
}

const Extended = onClickOutsideHOC(Component)

export function ListTextCellTrigger({ label, labelDashed, forwardedRef, tooltipClose }) {
    return (
        
    )
}

ListTextCellTrigger.propTypes = {
    label: PropTypes.string,
    forwardedRef: PropTypes.func,
    labelDashed: PropTypes.bool,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy