-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e441675
commit bb63f48
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { IconProps } from '../Types' | ||
|
||
export const Minus = ({ title, fill = 'currentColor', stroke = 'none', ...props }: IconProps) => ( | ||
<svg | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...{ ...(title && { 'data-title': title }), fill, stroke, ...props }} | ||
dangerouslySetInnerHTML={{ | ||
__html: | ||
(title === undefined ? '' : `<title>${title}</title>`) + | ||
'<path fill-rule="evenodd" clip-rule="evenodd" d="M2 11.9999C2 11.379 2.44772 10.8756 3 10.8756H21C21.5523 10.8756 22 11.379 22 11.9999C22 12.6208 21.5523 13.1242 21 13.1242H3C2.44772 13.1242 2 12.6208 2 11.9999Z"/>', | ||
}} | ||
/> | ||
) | ||
|
||
export const tags = ['minus', 'arrows'] |