Skip to content

Commit

Permalink
chore: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
N3TC4T committed Nov 14, 2024
1 parent 6205d70 commit 1eee339
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/General/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export default class Button extends Component<Props> {
transparent && styles.buttonTransparent,
secondary && styles.buttonSecondary,
light && styles.buttonLight,
contrast && styles.buttonContrast,
rounded && styles.buttonRounded,
roundedSmall && styles.buttonRoundedSmall,
roundedSmallBlock && styles.buttonRoundedSmallBlock,
Expand Down
2 changes: 1 addition & 1 deletion src/components/General/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type placementType = 'left' | 'right' | 'center';
interface ChildrenProps {
testID?: string;
text?: string;
textStyle?: TextStyle;
textStyle?: TextStyle | TextStyle[];
icon?: Extract<keyof typeof Images, string>;
iconSize?: number;
iconStyle?: ImageStyle;
Expand Down
4 changes: 2 additions & 2 deletions src/components/General/Icon/Icon.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Footer
* Icon
*
<Footer></Footer>
<Icon name={'IconLock'} size={25}></Icon>
*
*/
import React from 'react';
Expand Down

0 comments on commit 1eee339

Please sign in to comment.