mirror of https://github.com/buster-so/buster.git
30 lines
904 B
TypeScript
30 lines
904 B
TypeScript
import React from 'react';
|
|
|
|
import { iconProps } from './iconProps';
|
|
|
|
function section(props: iconProps) {
|
|
const strokewidth = props.strokewidth || 1.3;
|
|
const title = props.title || '12px section';
|
|
|
|
return (
|
|
<svg height="1em" width="1em" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
<title>{title}</title>
|
|
<g fill="currentColor">
|
|
<path
|
|
d="m10.25,1.5H1.75c-.414,0-.75-.336-.75-.75s.336-.75.75-.75h8.5c.414,0,.75.336.75.75s-.336.75-.75.75Z"
|
|
fill="currentColor"
|
|
strokeWidth="0"
|
|
/>
|
|
<path
|
|
d="m10.25,12H1.75c-.414,0-.75-.336-.75-.75s.336-.75.75-.75h8.5c.414,0,.75.336.75.75s-.336.75-.75.75Z"
|
|
fill="currentColor"
|
|
strokeWidth="0"
|
|
/>
|
|
<rect height="9" width="9" fill="currentColor" rx="1.75" ry="1.75" strokeWidth="0" y="3" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default section;
|