1 | import * as React from 'react';
|
2 | import { TextProps } from 'react-native';
|
3 | export type Props = TextProps & {
|
4 | children: React.ReactNode;
|
5 | };
|
6 | /**
|
7 | * Typography component for showing a paragraph.
|
8 | *
|
9 | * <div class="screenshots">
|
10 | * <img src="screenshots/paragraph.png" />
|
11 | * </div>
|
12 | *
|
13 | * ## Usage
|
14 | * ```js
|
15 | * import * as React from 'react';
|
16 | * import { Paragraph } from 'react-native-paper';
|
17 | *
|
18 | * const MyComponent = () => (
|
19 | * <Paragraph>Paragraph</Paragraph>
|
20 | * );
|
21 | *
|
22 | * export default MyComponent;
|
23 | * ```
|
24 | */
|
25 | declare const Paragraph: (props: Props) => React.JSX.Element;
|
26 | export default Paragraph;
|
27 | //# sourceMappingURL=Paragraph.d.ts.map |
\ | No newline at end of file |