Files
notesnook/apps/mobile/src/components/announcements/title.js

21 lines
443 B
JavaScript
Raw Normal View History

2021-11-22 15:12:26 +05:00
import React from 'react';
2022-02-28 23:25:18 +05:00
import { useThemeStore } from '../../stores/theme';
2022-02-28 13:48:59 +05:00
import Heading from '../ui/typography/heading';
2021-11-22 15:12:26 +05:00
import { getStyle } from './functions';
2022-01-22 12:57:05 +05:00
export const Title = ({ text, style = {} }) => {
2022-02-28 23:25:18 +05:00
const colors = useThemeStore(state => state.colors);
2022-01-22 12:57:05 +05:00
return (
<Heading
style={{
marginHorizontal: 12,
marginTop: 12,
...getStyle(style)
}}
>
{text}
</Heading>
);
};