mirror of https://github.com/buster-so/buster.git
28 lines
908 B
TypeScript
28 lines
908 B
TypeScript
import React from 'react';
|
|
|
|
import { iconProps } from './iconProps';
|
|
|
|
function alignDistributeVertical(props: iconProps) {
|
|
const strokewidth = props.strokewidth || 1.3;
|
|
const title = props.title || '18px align distribute vertical';
|
|
|
|
return (
|
|
<svg height="1em" width="1em" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
|
|
<title>{title}</title>
|
|
<g fill="currentColor">
|
|
<path
|
|
d="M16.25,16H1.75c-.414,0-.75-.336-.75-.75s.336-.75,.75-.75h14.5c.414,0,.75,.336,.75,.75s-.336,.75-.75,.75Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M16.25,3.5H1.75c-.414,0-.75-.336-.75-.75s.336-.75,.75-.75h14.5c.414,0,.75,.336,.75,.75s-.336,.75-.75,.75Z"
|
|
fill="currentColor"
|
|
/>
|
|
<rect height="5" width="5" fill="currentColor" rx="1.75" ry="1.75" x="3" y="6.5" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default alignDistributeVertical;
|