export type TextOverlayStyle =
| "outline"
| "highlight"
export type TextOverlayFont =
| "Montserrat"
| "Sofia"
export type TextOverlayFontWeight =
| 100
| 200
| 300
| 400
| 500
| 600
| 700
| 800
| 900
export function getCssStyle({
width,
height,
fontSize,
fontFamily,
fontWeight,
}: {
width?: number | string
height?: number | string
fontSize: number
fontFamily: TextOverlayFont
fontWeight: TextOverlayFontWeight
}) {
return `
`
}