diff options
Diffstat (limited to 'gui/src/components/post/Card.tsx')
| -rw-r--r-- | gui/src/components/post/Card.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/src/components/post/Card.tsx b/gui/src/components/post/Card.tsx new file mode 100644 index 0000000..9309423 --- /dev/null +++ b/gui/src/components/post/Card.tsx @@ -0,0 +1,12 @@ +import Icon from "@/components/Icon"; +import type { IconName } from "@/components/Icon"; + +export default function ({ children, logo, cn}: { cn?: string; logo: IconName; children: any }) { + const className = "trill-post-card" + (cn ? ` ${cn}`: "") + return ( + <div className={className}> + <Icon name={logo} size={20} className="trill-post-card-logo" /> + {children} + </div> + ); +} |
