-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
76 changed files
with
237 additions
and
233 deletions.
There are no files selected for viewing
Submodule content
updated
from 75a051 to 240297
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/AutoAwesomeIcon.svg"; | ||
import whiteIcon from "@/content/icons/AutoAwesomeWhiteIcon.svg"; | ||
|
||
export const AutoAwesomeIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
[theme.getColorSchemeSelector("dark")]: { | ||
content: `url(${whiteIcon})`, | ||
}, | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/BicstoneIcon.svg"; | ||
|
||
export const BicstoneIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,13 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/DescriptionIcon.svg"; | ||
import whiteIcon from "@/content/icons/DescriptionWhiteIcon.svg"; | ||
|
||
export const BlogIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
[theme.getColorSchemeSelector("dark")]: { | ||
content: `url(${whiteIcon})`, | ||
}, | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/ConnpassIcon.svg"; | ||
|
||
export const ConnpassIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,13 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/CorpIcon.svg"; | ||
import whiteIcon from "@/content/icons/CorpWhiteIcon.svg"; | ||
|
||
export const CorpIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
[theme.getColorSchemeSelector("dark")]: { | ||
content: `url(${whiteIcon})`, | ||
}, | ||
})); |
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,11 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/CsmIcon.png"; | ||
|
||
export const CsmIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
width: theme.spacing(12), | ||
height: theme.spacing(12), | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/FeedIcon.svg"; | ||
|
||
export const FeedIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/FindyIcon.svg"; | ||
|
||
export const FindyIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,13 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/GitHubIcon.svg"; | ||
import whiteIcon from "@/content/icons/GitHubWhiteIcon.svg"; | ||
|
||
export const GitHubIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
[theme.getColorSchemeSelector("dark")]: { | ||
content: `url(${whiteIcon})`, | ||
}, | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/LaprasIcon.svg"; | ||
|
||
export const LaprasIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/LinkedInIcon.png"; | ||
|
||
export const LinkedInIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/PaycareerIcon.svg"; | ||
|
||
export const PaycareerIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,11 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/RissIcon.png"; | ||
|
||
export const RissIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
width: theme.spacing(12), | ||
height: theme.spacing(12), | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/SpeakerDeckIcon.png"; | ||
|
||
export const SpeakerDeckIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/TwitterIcon.svg"; | ||
|
||
export const TwitterIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,13 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/VerifiedIcon.svg"; | ||
import whiteIcon from "@/content/icons/VerifiedWhiteIcon.svg"; | ||
|
||
export const VerifiedIcon = styled(IconBase)(({ theme }) => ({ | ||
content: `url(${icon})`, | ||
[theme.getColorSchemeSelector("dark")]: { | ||
content: `url(${whiteIcon})`, | ||
}, | ||
})); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/YoutrustIcon.svg"; | ||
|
||
export const YoutrustIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
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,9 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import { IconBase } from "./IconBase"; | ||
|
||
import icon from "@/content/icons/ZennIcon.svg"; | ||
|
||
export const ZennIcon = styled(IconBase)({ | ||
content: `url(${icon})`, | ||
}); |
4 changes: 2 additions & 2 deletions
4
src/components/logos/index.d.ts → src/components/icons/index.d.ts
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
declare module "@/content/logos/*.svg" { | ||
declare module "@/content/icons/*.svg" { | ||
const svg: string; | ||
export default svg; | ||
} | ||
|
||
declare module "@/content/logos/*.png" { | ||
declare module "@/content/icons/*.png" { | ||
const png: string; | ||
export default png; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.