mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 13:34:19 +00:00
25 lines
768 B
JavaScript
25 lines
768 B
JavaScript
import React from "react"
|
|
import Style from "./SummaryLeft.module.css"
|
|
import classNames from "classnames"
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
|
|
|
|
|
export default function SummaryLeft({ icon, title, subtitle, className, onClick, ...props }) {
|
|
return (
|
|
<div
|
|
className={classNames(Style.SummaryLeft, onClick ? "Clickable" : null, className)}
|
|
onClick={onClick}
|
|
{...props}
|
|
>
|
|
<div className={Style.IconContainer}>
|
|
<FontAwesomeIcon icon={icon}/>
|
|
</div>
|
|
<div className={Style.Title}>
|
|
{title}
|
|
</div>
|
|
<div className={Style.Subtitle}>
|
|
{subtitle}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|