BetterDiscordApp-rauenzi/renderer/src/ui/icons/list.jsx

10 lines
317 B
JavaScript

import React from "@modules/react";
export default function List(props) {
const size = props.size || "20px";
return <svg viewBox="2 2 20 20" fill="#FFFFFF" style={{width: size, height: size}}>
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M4 18h17v-6H4v6zM4 5v6h17V5H4z"/>
</svg>;
}