import type { FormatterProps } from '@byline/core' export function FeaturedFormatter({ value, record }: FormatterProps) { if (value == null || value === false) return null return ( ) }