"use client"; import React from "react"; import { IconWithBackground } from "@/subframe/components/IconWithBackground"; function IconWithBackgroundExample() { return ( <IconWithBackground variant="brand" size="x-small" icon="FeatherCheck" square={false} /> ); } export default IconWithBackgroundExample;
variant
"brand" | "neutral" | "error" | "success" | "warning"
"brand"
size
"x-large" | "large" | "medium" | "small" | "x-small"
"x-small"
icon
IconName
"FeatherCheck"
square
boolean
false
<div>
onClick
className
View code