Sha256: 3a0df69c936226ea5125c316beac2eedfb1ec652f1c8245ddca3888a18ac95ac
Contents?: true
Size: 384 Bytes
Versions: 110
Compression:
Stored size: 384 Bytes
Contents
/* @flow */ import React from 'react' import Icon from '../pb_icon/_icon' type CloseIconProps = { onClose: () => mixed, } 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
110 entries across 110 versions & 1 rubygems