-
Notifications
You must be signed in to change notification settings - Fork 2
feat: update checkbox and home icon styles #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nicomiguelino
wants to merge
3
commits into
Screenly:master
Choose a base branch
from
nicomiguelino:minor-ui-changes
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,30 @@ | ||
import { FC } from 'react'; | ||
|
||
interface HomeIconProps { | ||
width?: number; | ||
height?: number; | ||
className?: string; | ||
} | ||
|
||
export const HomeIcon: FC<HomeIconProps> = ({ | ||
width = 16, | ||
height = 16, | ||
className = '', | ||
}) => { | ||
return ( | ||
<svg | ||
width={width} | ||
height={height} | ||
viewBox="0 0 168 231" | ||
fill="currentColor" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className={className} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M37.0851 155.432L6.54627 137.798C4.62149 136.685 2.9505 135.071 1.75707 133.006C0.563651 130.94 0.00181166 128.683 0.00181166 126.458V89.9405C0.00181166 82.6208 1.84813 75.2073 5.76938 68.4185C9.68773 61.6297 15.187 56.3173 21.5183 52.6643L109.369 1.91903C111.55 0.660664 114.03 0 116.552 0C118.986 0 121.454 0.616104 123.711 1.91903L167.336 27.1202C165.074 25.8173 162.611 25.1934 160.174 25.1934C157.656 25.1934 155.177 25.8618 152.995 27.1202L65.1432 77.8577C58.8118 81.5107 53.3155 86.8231 49.3972 93.6119C45.473 100.402 43.6325 107.814 43.6325 115.134V151.654C43.6325 153.16 42.8469 154.626 41.4481 155.432C40.0493 156.241 38.388 156.186 37.0851 155.432ZM163.587 33.6037C162.53 32.9925 161.376 32.6834 160.166 32.6834C158.962 32.6834 157.766 33.0002 156.726 33.6037L123.395 52.856L160.478 74.2714C161.781 75.0251 163.442 75.0803 164.838 74.2714C166.237 73.4654 167.019 71.9988 167.019 70.4934V39.5546C167.019 37.1095 165.706 34.8262 163.587 33.6037ZM136.453 85.3296L160.794 99.3895C162.629 100.448 164.224 101.985 165.356 103.953C166.492 105.919 167.025 108.066 167.025 110.186V115.977V142.743C167.025 148.979 165.375 155.126 162.259 160.526C159.147 165.925 154.651 170.425 149.254 173.543L61.3926 224.28C60.3522 224.884 59.1617 225.201 57.9528 225.201C56.7458 225.201 55.595 224.892 54.5304 224.28C52.4197 223.059 51.1061 220.783 51.1061 218.339V187.035C51.1061 184.914 50.5704 182.768 49.4351 180.799L105.623 148.348C111.025 145.231 115.522 140.73 118.637 135.332C119.74 133.418 120.658 131.415 121.388 129.346C122.714 125.568 123.4 121.571 123.4 117.549V85.3509C123.4 83.8455 124.184 82.3789 125.582 81.5729C126.982 80.7669 128.64 80.8193 129.946 81.5729L136.453 85.3296ZM43.6317 191.363V218.348C43.6317 223.302 46.2 228.111 50.7863 230.762L7.16829 205.572C2.57477 202.915 0 198.101 0 193.148V166.527C0 165.023 0.785606 163.555 2.18149 162.747C3.58027 161.94 5.24254 161.995 6.54446 162.747L37.3952 180.564C39.229 181.623 40.8234 183.159 41.9587 185.127C43.096 187.096 43.6317 189.244 43.6317 191.363Z" | ||
/> | ||
</svg> | ||
); | ||
}; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try to avoid !important if there's a way using cascading