Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6830 stevensc 1
/* eslint-disable react/prop-types */
2
import React from 'react'
3
 
4
const InputOption = ({
5
  Icon = () => null,
6
  title = '',
7
  color = '#000',
8
  onClick = () => null,
9
  children,
10
  withTitle,
11
  ...rest
12
}) => {
13
  return (
14
    <div
15
      className="feed__share-option position-relative"
16
      onClick={onClick}
17
      {...rest}
18
    >
19
      <Icon style={{ color }} />
20
      {withTitle && <h4>{title}</h4>}
21
      {children}
22
    </div>
23
  )
24
}
25
 
26
export default InputOption