Sha256: c0fa665c009d14db4e58a730b48d8bec370b73f5e29b8acaabbc3266bb73c53a
Contents?: true
Size: 369 Bytes
Versions: 355
Compression:
Stored size: 369 Bytes
Contents
import React from 'react' import Icon from '../pb_icon/_icon' type CloseIconProps = { onClose: () => any, } export const CloseIcon = (props: CloseIconProps) => { const { onClose } = props return ( <div className="pb_dialog_close_icon" onClick={onClose} > <Icon fixedWidth icon="times" /> </div> ) }
Version data entries
355 entries across 355 versions & 1 rubygems