IconBackground.tsx7 lines · main
1'use client'
2
3export const IconBackground: React.FC<React.PropsWithChildren> = (props) => (
4 <div className="shrink-0 bg-brand-200 dark:bg-brand-400 border border-brand-300 dark:border-brand-400 w-8 h-8 flex items-center justify-center rounded-sm">
5 {props.children}
6 </div>
7)