Sha256: 89ee7f994489121307be3a5b2c8e3713ad8588292f5c8f17c765d5f1d8c36e9c
Contents?: true
Size: 549 Bytes
Versions: 25
Compression:
Stored size: 549 Bytes
Contents
/* @flow */ import React from 'react' import Icon from '../pb_icon/_icon' import {IconSizes} from '../pb_icon/_icon' type LightboxHeaderIconProps = { onClose: () => void, icon: string, iconSize: IconSizes, } export const LightboxHeaderIcon = (props: LightboxHeaderIconProps): React.ReactElement => { const { onClose, icon, iconSize } = props return ( <div className="close-icon ml_sm" onClick={onClose} > <Icon fixedWidth icon={icon} size={iconSize} /> </div> ) }
Version data entries
25 entries across 25 versions & 1 rubygems