-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replaced inline SVG by components
- Loading branch information
Showing
4 changed files
with
47 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
|
||
export default () => ( | ||
<svg width="7" height="12"> | ||
<path | ||
fill="none" | ||
fillRule="evenodd" | ||
stroke="#787993" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2" | ||
d="M6.046 1L1 6.046 6.046 11" /> | ||
</svg> | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
<svg width="12" height="12"> | ||
<g fill="none" fill-rule="evenodd" stroke="#787993" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"> | ||
<path d="M1 1l10 10M11 1L1 11"/> | ||
import React from 'react'; | ||
|
||
export default () => ( | ||
<svg width="12" height="12"> | ||
<g | ||
fill="none" | ||
fillRule="evenodd" | ||
stroke="#787993" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2"> | ||
<path d="M1 1l10 10M11 1L1 11" /> | ||
</g> | ||
</svg> | ||
</svg> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
import MenuButton from '../atoms/MenuButton'; | ||
import Title from '../atoms/Title'; | ||
import Type from '../atoms/Type'; | ||
|
||
// export { default } from './Approves'; | ||
// export { default } from './ButtonClose'; | ||
// export { default } from './ButtonMenu'; | ||
// export { default } from './ButtonDelete'; | ||
// export { default } from './Contributor'; | ||
// export { default } from './Dislikes'; | ||
// export { default } from './Logo'; | ||
// export { default } from './Message'; | ||
// export { default } from './SourceURL'; | ||
// export { default } from './Title'; | ||
// export { default } from '.Type'; |