import { cn } from '../lib/utils'; type ShowPoweredByProps = { show: boolean; position?: 'sticky' | 'absolute' | 'static'; }; const ShowPoweredBy = ({ show, position = 'sticky' }: ShowPoweredByProps) => { if (!show) { return null; } return (