import { type DomIconProps, IconPrivate, IconPublic } from '@/components/icons'; /** Icon for shared template flag. */ export function IconSharedTemplate({ value, size = '1.25rem', className }: DomIconProps) { if (value) { return ; } else { return ; } }