-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
219 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,42 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
interface SVGRProps { | ||
title?: string; | ||
titleId?: string; | ||
} | ||
const SvgDelete = ({ | ||
title, | ||
titleId, | ||
...props | ||
}: SVGProps<SVGSVGElement> & SVGRProps) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 16 18" | ||
role="img" | ||
aria-labelledby={titleId} | ||
{...props} | ||
> | ||
{title ? <title id={titleId}>{title}</title> : null} | ||
<mask | ||
id="delete_svg__a" | ||
width={24} | ||
height={24} | ||
x={-4} | ||
y={-3} | ||
maskUnits="userSpaceOnUse" | ||
style={{ | ||
maskType: "alpha", | ||
}} | ||
> | ||
<path fill="currentColor" d="M-4-3h24v24H-4z" /> | ||
</mask> | ||
<g mask="url(#delete_svg__a)"> | ||
<path | ||
fill="currentColor" | ||
d="M3 18q-.824 0-1.412-.587A1.93 1.93 0 0 1 1 16V3H0V1h5V0h6v1h5v2h-1v13q0 .824-.588 1.413A1.93 1.93 0 0 1 13 18zM13 3H3v13h10zM5 14h2V5H5zm4 0h2V5H9z" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
export default SvgDelete; |
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
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
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,3 @@ | ||
--- | ||
title: Fondations | ||
--- |
36 changes: 36 additions & 0 deletions
36
projects/filigran-website/content/docs/fondations/spacing.mdx
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,36 @@ | ||
--- | ||
title: Spacing | ||
--- | ||
|
||
# Spacing | ||
|
||
<div className="flex flex-col gap-xl"> | ||
<div> | ||
Spacing-xxs | ||
<div className="bg-primary h-xxs"/> | ||
</div> | ||
<div> | ||
Spacing-xs | ||
<div className="bg-primary h-xs"/> | ||
</div> | ||
<div> | ||
Spacing-s | ||
<div className="bg-primary h-s"/> | ||
</div> | ||
<div> | ||
Spacing-m | ||
<div className="bg-primary h-m"/> | ||
</div> | ||
<div> | ||
Spacing-l | ||
<div className="bg-primary h-l"/> | ||
</div> | ||
<div> | ||
Spacing-xl | ||
<div className="bg-primary h-xl"/> | ||
</div> | ||
<div> | ||
Spacing-xxl | ||
<div className="bg-primary h-xxl"/> | ||
</div> | ||
</div> |