Skip to content

Commit

Permalink
fixed spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorz committed Oct 20, 2020
1 parent c5fed91 commit 5bfd151
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion extensions/blocks/story/editor.native.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
right: 5px;
}

.iconCustomise {
.iconCustomize {
fill: #fff;
position: absolute;
top: 7px;
Expand Down
12 changes: 3 additions & 9 deletions extensions/blocks/story/story-editing-button.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,13 @@ import { Icon } from '@wordpress/components';
import SvgIconCustomize from './icon-customize';
import styles from './editor.scss';

const StoryEditingButton = ( {
onEditButtonTapped,
} ) => {
const StoryEditingButton = ( { onEditButtonTapped } ) => {
return (
<TouchableWithoutFeedback onPress={ onEditButtonTapped }>
<View style={ styles.editContainer }>
<View style={ styles.edit }>
{/* { mediaOptions() } */}
<Icon
size={ 16 }
icon={ SvgIconCustomize }
{ ...styles.iconCustomise }
/>
{ /* { mediaOptions() } */ }
<Icon size={ 16 } icon={ SvgIconCustomize } { ...styles.iconCustomize } />
</View>
</View>
</TouchableWithoutFeedback>
Expand Down

0 comments on commit 5bfd151

Please sign in to comment.