diff --git a/docs/src/articles/design-system/use-theme-variables.md b/docs/src/articles/design-system/use-theme-variables.md index ad40be435..5ea34d096 100644 --- a/docs/src/articles/design-system/use-theme-variables.md +++ b/docs/src/articles/design-system/use-theme-variables.md @@ -14,15 +14,17 @@ import { View } from 'react-native'; import { withStyles } from '@ui-kitten/components'; const AwesomeView = (props) => { - const { themedStyle, style, ...restProps } = this.props; + const { themedStyle, style, ...restProps } = props; return ( - + ); }; export const ThemedAwesomeView = withStyles(AwesomeView, (theme) => ({ - backgroundColor: theme['color-primary-500'], + awesome: { + backgroundColor: theme['color-primary-500'], + }, })); ```