20 lines
487 B
TypeScript
20 lines
487 B
TypeScript
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Dash(props: Props) {
|
|
const {
|
|
size = 14, width = size, height = size, fill = '',
|
|
} = props;
|
|
return (
|
|
<svg viewBox="0 0 16 16" width={`${width}px`} height={`${height}px`}><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z" /></svg>
|
|
);
|
|
}
|
|
|
|
export default Dash;
|