users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/home-assistant.jsx
2e30121671a730a2b4bc2f82d2e30ed5c9ff70e5
· 503 B · 10 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function HomeAssistant(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path d="M24 22.5c0 .8-.7 1.5-1.5 1.5h-21C.7 24 0 23.3 0 22.5v-9c0-.8.5-2 1-2.6L11 1c.5-.5 1.5-.5 2 0l10 10c.5.5 1 1.7 1 2.5v9Z" /> |
| 7 | <path d="M23 11 13 1c-.5-.5-1.5-.5-2 0L1 11c-.5.5-1 1.7-1 2.5v9c0 .8.7 1.5 1.5 1.5h9.2l-4-4A2 2 0 1 1 8 18.6l3.1 3.1V10.2a2 2 0 1 1 1.8 0v8.1l3.1-3.1a2 2 0 1 1 1.3 1.3l-4.4 4.4v3h9.6c.8 0 1.5-.6 1.5-1.4v-9c0-.8-.5-2-1-2.6Z" /> |
| 8 | </Icon> |
| 9 | ); |
| 10 | } |