Skip to content

Commit

Permalink
chore: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed May 1, 2021
1 parent a96ac4d commit 59091c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ui-color

Converting HEX & RGB colors to UIColor/NSColor/Color for both Objective C & Swift & SwiftUI.

![](https://user-images.githubusercontent.com/1680273/116743040-e60ea580-aa2a-11eb-969e-19e0e6b5d010.png)
[![](https://user-images.githubusercontent.com/1680273/116743040-e60ea580-aa2a-11eb-969e-19e0e6b5d010.png)](https://uiwjs.github.io/ui-color/)

## Development

Expand Down
2 changes: 1 addition & 1 deletion src/app/Code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function Code(props: CodeProps) {
<div className={styles.warpper}>
<div className={styles.tool}>
<div className={styles.title}>{title}</div>
<div className={`${styles.copy} ${isCopy ? styles.copied: ''}`} onClick={copyHandle}>Copy</div>
<div className={`${styles.copy} ${isCopy ? styles.copied: ''}`} onClick={copyHandle}>{isCopy ? 'Copied' : 'Copy'}</div>
</div>
<pre className={styles.code}>
<code className={`language-${lang}`} dangerouslySetInnerHTML={{ __html: html}} />
Expand Down

0 comments on commit 59091c8

Please sign in to comment.