-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: final changes for the drawer component
- Loading branch information
1 parent
deafa18
commit 7cbf2a5
Showing
9 changed files
with
200 additions
and
133 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
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
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,19 @@ | ||
import React from 'react'; | ||
import { Svg, Path } from 'react-native-svg'; | ||
import { ColorValue } from 'react-native/types'; | ||
|
||
type Props = { | ||
color: ColorValue; | ||
size: number; | ||
}; | ||
|
||
const RaiseHand = ({ color, size }: Props) => ( | ||
<Svg viewBox={`0 0 20 20`} width={size} height={size}> | ||
<Path | ||
d="M18.2095 13.3333C18.2095 17.0167 15.2262 20 11.5428 20C8.82616 20 6.38449 18.3417 5.37616 15.8167L2.85116 9.475C2.59283 8.81667 3.20949 8.15833 3.88449 8.375L4.54283 8.59167C5.00949 8.74167 5.39283 9.1 5.57616 9.55833L6.64283 12.2333C6.70949 12.4 6.85949 12.5 7.02616 12.5H7.37616V2.70833C7.37616 2.13333 7.84283 1.66667 8.41783 1.66667C8.99283 1.66667 9.45949 2.13333 9.45949 2.70833V9.58333C9.45949 9.81667 9.64283 10 9.87616 10C10.1095 10 10.2928 9.81667 10.2928 9.58333V1.04167C10.2928 0.466667 10.7595 0 11.3345 0C11.9095 0 12.3762 0.466667 12.3762 1.04167V9.58333C12.3762 9.81667 12.5595 10 12.7928 10C13.0262 10 13.2095 9.81667 13.2095 9.58333V2.29167C13.2095 1.71667 13.6762 1.25 14.2512 1.25C14.8262 1.25 15.2928 1.71667 15.2928 2.29167V9.58333C15.2928 9.81667 15.4762 10 15.7095 10C15.9428 10 16.1262 9.81667 16.1262 9.58333V4.79167C16.1262 4.21667 16.5928 3.75 17.1678 3.75C17.7428 3.75 18.2095 4.21667 18.2095 4.79167V13.3333Z" | ||
fill={color} | ||
/> | ||
</Svg> | ||
); | ||
|
||
export default RaiseHand; |
Oops, something went wrong.