Initial commit
This commit is contained in:
21
src/svg/Minus.tsx
Normal file
21
src/svg/Minus.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from "react"
|
||||
import Svg, { SvgProps, Path } from "react-native-svg"
|
||||
|
||||
interface Props {
|
||||
color: string;
|
||||
width?: number;
|
||||
height?: number;
|
||||
}
|
||||
|
||||
const Minus = ({ color, height = 24, width = 24 }: Props) => (
|
||||
<Svg width={width} height={height} fill="none" viewBox="0 0 24 24">
|
||||
<Path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M6 12h12"
|
||||
/>
|
||||
</Svg>
|
||||
)
|
||||
export default Minus
|
||||
Reference in New Issue
Block a user