Sha256: d98005fdfa2b2ccb967fbff554138b5ef967f9131628d57ea1bf8a3f82e3c018
Contents?: true
Size: 1.37 KB
Versions: 9
Compression:
Stored size: 1.37 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { globalProps } from '../utilities/globalProps' import Icon from '../pb_icon/_icon' type IconCircleProps = { aria?: {[key:string]: string}, className?: string, dark?: boolean, data?: {[key:string]: string}, icon: string, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, size?: "base" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl", variant?: | "default" | "royal" | "blue" | "purple" | "teal" | "red" | "yellow" | "orange" | "green", } const IconCircle = (props: IconCircleProps) => { const { aria = {}, className, dark = false, data = {}, htmlOptions = {}, icon, id, size = 'md', variant = 'default' } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const classes = classnames(buildCss('pb_icon_circle_kit', size, variant), globalProps(props), className) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > <Icon dark={dark} icon={icon} /> </div> ) } export default IconCircle
Version data entries
9 entries across 9 versions & 1 rubygems