mango-ui-v3/components/styles.tsx

14 lines
282 B
TypeScript
Raw Normal View History

2021-04-24 19:10:28 -07:00
export const ElementTitle = ({
children,
noMarignBottom = false,
className = '',
}) => (
2021-04-18 03:34:37 -07:00
<div
className={`flex justify-center ${
2021-04-19 09:15:49 -07:00
noMarignBottom ? 'mb-0' : 'mb-2.5'
2021-04-24 19:10:28 -07:00
} text-lg font-semibold items-center text-th-fgd-1 ${className}`}
2021-04-18 03:34:37 -07:00
>
{children}
</div>
2021-04-09 07:27:49 -07:00
)