/* @flow */ import React from 'react' import Icon from '../pb_icon/_icon' type CloseIconProps = { onClose: () => mixed, } export const CloseIcon = (props: CloseIconProps) => { const { onClose } = props return (