iconoir/packages/iconoir-react-native/src/Dialpad.tsx

32 lines
839 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDialpad(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6 7a1 1 0 110-2 1 1 0 010 2zM12 7a1 1 0 110-2 1 1 0 010 2zM18 7a1 1 0 110-2 1 1 0 010 2zM6 13a1 1 0 110-2 1 1 0 010 2zM12 13a1 1 0 110-2 1 1 0 010 2zM18 13a1 1 0 110-2 1 1 0 010 2zM12 19a1 1 0 110-2 1 1 0 010 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDialpad);
export default ForwardRef;