Sha256: c82868eb18b392b9a387aa5271e59e135cf6c7d816f8da36fecb09670efb9aa4
Contents?: true
Size: 1.18 KB
Versions: 124
Compression:
Stored size: 1.18 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps } 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, id?: string, size?: "base" | "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 = {}, icon, id, size = 'md', variant = 'default' } = props const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const classes = classnames(buildCss('pb_icon_circle_kit', size, variant), globalProps(props), className) return ( <div {...ariaProps} {...dataProps} className={classes} id={id} > <Icon dark={dark} icon={icon} /> </div> ) } export default IconCircle
Version data entries
124 entries across 124 versions & 1 rubygems